-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.11 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
{
"name": "kustron",
"version": "1.2.3",
"description": "kustomize based kubernetes manifest generator for your services with GKE friendly pipeline commands",
"main": "bin/kustron.js",
"bin": {
"kustron": "./bin/kustron.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"up": "npm publish && git push --follow-tags",
"patch-up": "npm version patch && npm run up",
"minor-up": "npm version minor && npm run up",
"major-up": "npm version major && npm run up"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dibosh/kustron.git"
},
"keywords": [
"kustomize",
"kubernetes",
"k8s",
"gke",
"manifest",
"config",
"service",
"app",
"golang",
"java",
"nodejs",
"python"
],
"author": "Munim Dibosh",
"license": "MIT",
"bugs": {
"url": "https://github.com/dibosh/kustron/issues"
},
"homepage": "https://github.com/dibosh/kustron#readme",
"dependencies": {
"chalk": "^4.0.0",
"commander": "^5.1.0",
"figlet": "^1.4.0",
"handlebars": "^4.7.6",
"inquirer": "^7.1.0"
}
}