forked from zhaoda/webpack-handbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 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
42
{
"name": "webpack-handbook",
"version": "0.0.5",
"description": "Webpack 中文指南",
"scripts": {
"serve-gitbook": "gitbook serve ./content ./docs",
"generate-gitbook": "gitbook build ./content ./docs",
"generate-wiki": "node ./scripts/generate-wiki.js",
"deploy-wiki": "./scripts/deploy-wiki.sh",
"generate-and-deploy": "npm run generate-gitbook && npm run generate-wiki && npm run deploy-wiki",
"publish-gitbook": "./scripts/publish-gitbook.sh",
"publish-webpackdoc": "./scripts/publish-webpackdoc.sh",
"publish-all": "npm run generate-and-deploy && npm run publish-gitbook && npm run publish-webpackdoc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/zhaoda/webpack-handbook.git"
},
"keywords": [
"webpack"
],
"author": {
"name": "zhaoda",
"email": "[email protected]",
"url": "http://zhaoda.net"
},
"license": "CC-BY-NC-4.0",
"bugs": {
"url": "https://github.com/zhaoda/webpack-handbook/issues"
},
"homepage": "https://github.com/zhaoda/webpack-handbook",
"dependencies": {
"async": "^1.5.0",
"fs-extra": "^0.26.0",
"gh-pages": "^0.4.0",
"gitbook-cli": "^1.0.0"
},
"devDependencies": {
"ebook-convert": "^1.0.0"
}
}