generated from mfdlabs/node-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.46 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "@mfdlabs/node-template",
"version": "1.0.0",
"description": "A Node.js template that follows NJS-32551 contracts.",
"main": "lib/index.js",
"types": "lib/types",
"scripts": {
"test": "jest --config jestconfig.json --verbose --runInBand --passWithNoTests --silent=false",
"test-full": "npm ci && npm update && npm run test",
"build": "npm run clean && npm run compile",
"build-full": "npm ci && npm update && npm run build",
"clean": "tsc -b --clean tsconfig.json",
"compile": "tsc -b -v --listEmittedFiles tsconfig.json",
"lint": "eslint -c .eslintrc --fix",
"lint-ci": "eslint -c .eslintrc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"publish-package": "npm run lint && npm run test && npm run build && npm publish --access public"
},
"keywords": [
"template"
],
"repository": {
"type": "git",
"url": "git+github.com/mfdlabs/node-template.git"
},
"author": "JavaScript Squad <javascript-dev-squad@vmminfra.net>",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^41.1.1",
"jest": "^28.1.0",
"prettier": "^2.8.0",
"ts-jest": "^28.0.4",
"typescript": "^4.9.3"
},
"files": [
"lib/*",
"!lib/tests.js"
]
}