forked from leucos/ansible-tuto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.07 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
{
"name": "ansible-tuto",
"version": "0.1.0",
"description": "ansible step-by-step tutorial",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"gitbook-cli": "~2.2.0",
"gitbook-plugin-edit-link": "~2.0.2",
"gitbook-plugin-github": "~2.0.0"
},
"devDependencies": {},
"scripts": {
"docs:prepare": "gitbook install",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:build": "npm run docs:prepare && rm -rf _book && gitbook build",
"docs:publish": "npm run docs:build && cd _book && git init && git commit --allow-empty -m 'Update docs' && git checkout -b gh-pages && git add . && git commit -am 'Update docs' && git push https://github.com/leucos/ansible-tuto gh-pages --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leucos/ansible-tuto.git"
},
"keywords": [
"ansible",
"vagrant"
],
"author": "",
"license": "BSD",
"bugs": {
"url": "https://github.com/leucos/ansible-tuto/issues"
},
"homepage": "https://github.com/leucos/ansible-tuto#readme"
}