forked from nefe/redux-in-chinese
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.6 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
42
43
44
45
46
47
48
49
50
{
"name": "redux-in-chinese",
"description": "Redux 中文文档",
"scripts": {
"clean": "rimraf _book",
"build": "gitbook build -g camsong/redux-in-chinese",
"watch": "gitbook serve",
"publish": "npm run clean && npm run build && cp CNAME _book && 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' && git push [email protected]:camsong/redux-in-chinese gh-pages --force",
"offline": "gitbook pdf . offline/redux-in-chinese.pdf && gitbook epub . offline/redux-in-chinese.epub && gitbook mobi . offline/redux-in-chinese.mobi",
"postinstall": "opencollective postinstall"
},
"repository": {
"type": "git",
"url": "https://github.com/camsong/redux-in-chinese.git"
},
"keywords": [
"flux",
"redux",
"reducer",
"react",
"reactjs",
"hot",
"reload",
"hmr",
"live",
"edit",
"webpack"
],
"author": "Cam Song <[email protected]> (http://github.com/camsong) & Community members",
"license": "MIT",
"bugs": {
"url": "https://github.com/camsong/redux-in-chinese/issues"
},
"homepage": "https://github.com/camsong/redux-in-chinese",
"devDependencies": {
"gitbook-cli": "^2.3.2",
"gitbook-plugin-advanced-emoji": "^0.2.2",
"gitbook-plugin-edit-link": "^2.0.2",
"gitbook-plugin-ga": "^1.0.0",
"gitbook-plugin-prism": "^2.3.0",
"rimraf": "^2.6.2"
},
"dependencies": {
"opencollective": "^1.0.3"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/redux-in-chinese"
}
}