-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.3 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
{
"name": "@bufferapp/kubesecret",
"version": "0.5.0",
"description": "A CLI utility to manage secrets in kubernetes",
"main": "\"\"",
"dependencies": {
"chalk": "^2.4.2",
"commander": "^2.20.0",
"inquirer": "^6.4.1",
"js-yaml": "^3.13.1",
"shelljs": "^0.8.3"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.1",
"jest": "^24.8.0",
"pkg": "^4.4.0"
},
"scripts": {
"test": "jest",
"build": "pkg -t node10-linux-x64,node10-macos-x64 -o ./bin/kubesecret package.json",
"watchLinux": "while inotifywait -q -r -e modify ./lib ./tests; do npm run test; done;",
"watchMac": "fswatch -r $(pwd) -e '\\.git/' -e 'node_modules/' -x | (while read; do npm run test; done)"
},
"bin": {
"kubesecret": "scripts/kubesecret.js"
},
"pkg": {
"scripts": [
"./scripts/kubesecret*.js",
"./lib/*.js"
]
},
"engine": {
"node": ">= 10.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bufferapp/kubesecret.git"
},
"author": "Buffer Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/bufferapp/kubesecret/issues"
},
"homepage": "https://github.com/bufferapp/kubesecret#readme"
}