-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
40 lines (40 loc) · 878 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": "wux-weapp-docs",
"version": "1.0.0",
"description": "Wux Weapp Docs.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"devDependencies": {
"docsify-cli": "^4.4.2",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,css,json,md}": [
"prettier --write",
"git add"
]
},
"scripts": {
"start": "./node_modules/.bin/docsify serve docs -p 80",
"format": "prettier --write docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wux-weapp/wux-weapp-docs.git"
},
"author": "skyvow",
"license": "MIT",
"bugs": {
"url": "https://github.com/wux-weapp/wux-weapp-docs/issues"
},
"homepage": "https://github.com/wux-weapp/wux-weapp-docs#readme"
}