-
Notifications
You must be signed in to change notification settings - Fork 56
/
package.json
34 lines (34 loc) · 1.1 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
{
"name": "kubeform",
"version": "0.0.1",
"description": "Automatic Kubernetes cluster provisioning",
"private": true,
"scripts": {
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:prepare && gitbook build -g Capgemini/kubeform",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:publish": "npm run docs:clean && npm run docs:build && cd _book && git init && git commit --allow-empty -m 'update book' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'update book' && git push [email protected]:Capgemini/kubeform gh-pages --force"
},
"repository": {
"type": "git",
"url": "https://github.com/Capgemini/kubeform.git"
},
"keywords": [
"kubernetes",
"devops",
"containers",
"docker"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Capgemini/kubeform/issues"
},
"devDependencies": {
"gitbook-cli": "^0.3.4",
"gitbook-plugin-edit-link": "^1.4.2",
"gitbook-plugin-github": "^1.1.0",
"gitbook-plugin-prism": "^1.0.0",
"rimraf": "^2.5.2"
}
}