forked from superRaytin/redux-saga-in-chinese
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.32 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
{
"name": "redux-saga-in-chinese",
"version": "0.9.5",
"description": "Redux-saga 中文文档",
"scripts": {
"clean": "rimraf _book",
"build": "gitbook build -g superRaytin/redux-saga-in-chinese",
"watch": "gitbook serve",
"publish": "npm run prepublish && npm run gh-pages",
"gh-pages": "./node_modules/gh-pages/bin/gh-pages -d _book -r [email protected]:superRaytin/redux-saga-in-chinese.git",
"prepublish": "npm run clean && npm run 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'"
},
"repository": {
"type": "git",
"url": "https://github.com/superRaytin/redux-saga-in-chinese.git"
},
"keywords": [
"javascript",
"redux",
"middleware",
"saga",
"effects",
"side effects"
],
"author": "Leon Shi <[email protected]> (http://github.com/superRaytin)",
"license": "MIT",
"bugs": {
"url": "https://github.com/superRaytin/redux-saga-in-chinese/issues"
},
"homepage": "https://github.com/superRaytin/redux-saga-in-chinese",
"devDependencies": {
"gitbook-cli": "^0.3.4",
"gitbook-plugin-prism": "^0.1.1",
"gitbook-plugin-ga": "^0.2.1",
"gitbook-plugin-edit-link": "^1.4.1",
"gh-pages": "~0.11.0",
"rimraf": "^2.3.4"
}
}