-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.44 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
{
"name": "myproject-wiki",
"description": "",
"directories": {
"lib": "lib"
},
"devDependencies": {
"del": "^3.0.0",
"fs-extra": "^7.0.1",
"gitbook": "^3.2.3",
"gitbook-cli": "^2.3.2",
"gitbook-plugin-search-plus": "^1.0.4-alpha-3",
"gitbook-summary": "^1.2.2",
"gulp": "^3.9.1",
"gulp-cli": "^2.2.0",
"gulp-exec": "^3.0.2",
"gulp-gitbook": "0.0.2",
"run-sequence": "^2.2.1"
},
"author": "Piperift",
"homepage": "https://piperift.com",
"dependencies": {
"ebook-convert": "^2.0.1",
"gitbook-plugin-collapsible-chapters": "^0.1.8",
"gitbook-plugin-copy-code-button": "0.0.2",
"gitbook-plugin-custom-favicon": "0.0.4",
"gitbook-plugin-hide-published-with": "^1.0.3",
"gitbook-plugin-hints": "^1.0.2",
"gitbook-plugin-prism": "^2.4.0",
"gitbook-plugin-search-plus": "^1.0.3",
"gitbook-plugin-styles-less": "^1.0.0"
},
"scripts": {
"postinstall": "node ./node_modules/gitbook-cli/bin/gitbook.js install",
"start": "node ./node_modules/gulp-cli/bin/gulp.js serve",
"build": "node ./node_modules/gulp-cli/bin/gulp.js build",
"build-light": "node ./node_modules/gulp-cli/bin/gulp.js build-light",
"publish": "npm run build && cd _book && git init && git commit --allow-empty -m 'Update docs' && git checkout -b gh-pages && git add . && git rm *.md -f && git commit -am 'Update docs' && git push [email protected]:<username>/<repo> gh-pages --force"
}
}