-
Notifications
You must be signed in to change notification settings - Fork 137
/
package.json
41 lines (41 loc) · 1.28 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
41
{
"name": "redux-saga-in-chinese",
"version": "1.0.0-beta",
"description": "Redux-saga 中文文档",
"scripts": {
"gh-pages": "./node_modules/gh-pages/bin/gh-pages -d _book -r [email protected]:superRaytin/redux-saga-in-chinese.git -m 'update book' -t",
"clean": "rimraf _book",
"prepare": "gitbook install",
"build": "npm run prepare && gitbook build -g redux-saga/redux-saga",
"watch": "npm run prepare && gitbook serve",
"publish-book": "npm run clean && npm run build && cp CNAME _book && touch _book/.nojekyll && npm run gh-pages"
},
"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": "^2.3.2",
"gh-pages": "~1.1.0",
"rimraf": "^2.6.2"
},
"dependencies": {
"gitbook-plugin-edit-link": "^2.0.2",
"gitbook-plugin-github": "^2.0.0",
"gitbook-plugin-prism": "^1.0.0"
}
}