-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1003 Bytes
/
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": "reducejs-handbook",
"version": "0.0.1",
"description": "reduce",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"clean": "del _book",
"docs:install": "gitbook install",
"build": "gitbook build -g reducejs/reducejs.github.io",
"serve": "gitbook serve",
"dist": "npm run clean && npm run build && cp CNAME _book && cd _book && git init && git add . && git commit -am 'update book' && git push git@github.com:reducejs/reducejs.github.io master --force",
"docs:dist": "npm run docs:install && npm run dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reducejs/reducejs-handbook.git"
},
"keywords": [
"reducejs"
],
"author": "zoubin",
"license": "MIT",
"bugs": {
"url": "https://github.com/reducejs/reducejs-handbook/issues"
},
"homepage": "https://github.com/reducejs/reducejs-handbook#readme",
"devDependencies": {
"del-cli": "^0.2.0",
"gitbook-cli": "^2.1.3"
}
}