-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.09 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
46
47
48
49
50
51
52
{
"name": "node-cli-arg-by-config",
"version": "0.10.5",
"homepage": "https://github.com/sheam/node-cli-arg-by-config",
"keywords": [
"cli",
"script",
"arguments",
"argv"
],
"description": "Parsing command line arguments for node scripts.",
"devDependencies": {
"@types/bluebird": "^3.5.36",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"lint-staged": "^12.1.2",
"rollup": "^2.61.1",
"rollup-plugin-typescript-paths": "^1.3.0",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^27.1.2",
"ts-toolbelt": "^9.6.0",
"typescript": "^4.5.4",
"typescript-formatter": "^7.2.2"
},
"scripts": {
"compile": "tsc",
"format": "tsfmt -r",
"build": "rollup -c",
"watch": "rollup -cw",
"test": "jest"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"husky": {
"hooks": {
"pre-commit": [
"lint-staged"
]
}
},
"lint-staged": {
"*.{ts,tsx}": [
"tsfmt -r"
]
}
}