-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 988 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 988 Bytes
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
{
"name": "nodejs_lib_starter",
"license": "MIT",
"module": "dist/mod.js",
"types": "dist/mod.d.js",
"main": "dist/cjs/mod.js",
"scripts": {
"build": "run-s clean && run-p build:*",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"check": "run-p fmt_check lint test",
"clean": "rimraf dist",
"fmt": "npm run fmt_check -- --write",
"fmt_check": "prettier --check \"**/*.{md,json,js,ts,jsx,tsx}\"",
"lint": "eslint --ext js,ts,jsx,tsx",
"test": "jest"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.7",
"@types/node": "^14.0.26",
"@typescript-eslint/eslint-plugin": "^3.7.0",
"@typescript-eslint/parser": "^3.7.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"jest": "^26.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-jest": "^26.1.3",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}