forked from cilium/k8s-1abel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.12 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
{
"name": "k8s-1abel",
"version": "0.0.0",
"private": true,
"bin": {
"k8s-1abel": "./build/src/main.js"
},
"pkg": {
"scripts": "build/src/**/*.js"
},
"scripts": {
"build": "yarn compile && yarn pkg",
"compile": "tsc",
"pkg": "pkg -t node8-linux-x64,node8-macos-x64 .",
"precommit": "lint-staged",
"prettier": "node ./prettier.js",
"start": "node ./build/src/main.js",
"test": "ts-node ./src/main.ts"
},
"devDependencies": {
"@types/diff": "^3.2.2",
"@types/fast-levenshtein": "^0.0.1",
"@types/moment": "^2.13.0",
"@types/node": "^9.4.0",
"@types/object-hash": "^1.2.0",
"@types/yargs": "^10.0.1",
"husky": "^0.14.3",
"lint-staged": "^7.0.4",
"pkg": "^4.3.1",
"prettier": "^1.11.1",
"ts-node": "^5.0.1",
"typescript": "^2.7.1"
},
"dependencies": {
"chalk": "^2.3.2",
"diff": "^3.5.0",
"fast-levenshtein": "^2.0.6",
"jsonpath-plus": "^0.16.0",
"object-hash": "^1.3.0",
"yargs": "^11.0.0"
},
"lint-staged": {
"linters": {
"**/*.ts": [
"yarn run prettier",
"git add"
]
}
}
}