forked from zhangyuang/fe-dev-playbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 986 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
35
36
37
38
39
40
{
"name": "fe-dev-playbook",
"version": "1.0.3",
"description": "打造舒适的前端开发环境",
"bin": {
"playbook": "index.js",
"fe-dev-playbook": "index.js"
},
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:publish": "surge ./docs/.vuepress/dist fe.surge.sh",
"publish": "npm run docs:build && npm run docs:publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ykfe/fe-dev-playbook.git"
},
"author": "ykfe",
"license": "MIT",
"bugs": {
"url": "https://github.com/ykfe/fe-dev-playbook/issues"
},
"homepage": "https://github.com/ykfe/fe-dev-playbook#readme",
"devDependencies": {
"vuepress": "^1.0.2"
},
"engines": {
"node": "^4.8.4 || ^6.10.1 || ^7.10.1 || >= 8.1.4"
},
"files": [
"index.js",
"docs/.vuepress/dist"
],
"dependencies": {
"finalhandler": "^1.1.2",
"open": "^6.4.0",
"serve-static": "^1.14.1"
}
}