forked from lagoufed/vuejs-enhancement
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.26 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
51
52
53
54
55
56
57
{
"name": "vuejs-enhancement",
"version": "0.1.0",
"description": "Front-end development enhanced course notes by LagouEdu",
"keywords": [
"Courses",
"Tutorials",
"LagouEdu",
"Front-end"
],
"homepage": "https://github.com/lagoufed/vuejs-enhancement#readme",
"bugs": {
"url": "https://github.com/lagoufed/vuejs-enhancement/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lagoufed/vuejs-enhancement.git"
},
"license": "MIT",
"author": {
"name": "zce",
"email": "[email protected]",
"url": "https://zce.me"
},
"scripts": {
"format": "prettier --write **/*.md",
"commit": "git-cz"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.md": "prettier --write"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"commitizen": "latest",
"cz-conventional-changelog": "latest",
"husky": "latest",
"lint-staged": "latest",
"prettier": "latest"
}
}