-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
71 lines (71 loc) · 1.73 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "deploy-node-app",
"version": "3.1.0",
"description": "Develop and deploy Node.js apps with Kubernetes, with zero config!",
"main": "src/index.js",
"repository": "https://github.com/kubesail/deploy-node-app",
"license": "MIT",
"engines": {
"node": ">=8"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 100,
"arrowParens": "avoid",
"trailingComma": "none"
},
"contributors": [
{
"name": "Seandon Mooy",
"email": "[email protected]"
},
{
"name": "Dan Pastusek",
"email": "[email protected]"
}
],
"scripts": {
"test": "./bin/test.sh"
},
"bin": {
"deploy-node-app": "src/index.js",
"deploy-to-kube": "src/index.js"
},
"authors": [
"Seandon Mooy <[email protected]>",
"Dan Pastusek <[email protected]>"
],
"devDependencies": {
"babel-eslint": "^10.1.0",
"chai": "^4.3.6",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^10.0.0",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.0.0"
},
"dependencies": {
"ansi-styles": "5.2.0",
"chalk": "^4",
"commander": "^9.4.0",
"diff": "^5.1.0",
"get-kubesail-config": "^1.0.4",
"got": "^11",
"inquirer": "8.2.3",
"inquirer-fuzzy-path": "^2.3.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"validator": "^13.7.0"
}
}