-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1023 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 1023 Bytes
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
{
"name": "lets-go-coding",
"version": "1.0.0",
"description": "让我们编码吧! 动起手来~",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "sudo ./deploy.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luohong123/lets-go-coding.git"
},
"author": "qingcheng",
"license": "ISC",
"bugs": {
"url": "https://github.com/luohong123/lets-go-coding/issues"
},
"homepage": "https://github.com/luohong123/lets-go-coding#readme",
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"dependencies": {
"cz-customizable": "^6.2.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"cz-conventional-changelog": "^3.0.2",
"vuepress": "^1.1.0"
}
}