-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.03 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
58
59
60
61
62
63
64
65
66
67
68
{
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.0"
},
"scripts": {
"prepare": "husky install"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog",
"disableScopeLowerCase": false,
"disableSubjectLowerCase": false,
"maxHeaderWidth": 100,
"maxLineWidth": 100,
"defaultType": "",
"defaultScope": "",
"defaultSubject": "",
"defaultBody": "",
"defaultIssues": "",
"types": {
"feat": {
"title": "Feature",
"description": "A new feature"
},
"fix": {
"title": "Bug Fix",
"description": "A bug fix"
},
"docs": {
"title": "Documentation",
"description": "Documentation only changes"
},
"style": {
"title": "Style",
"description": "Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc)"
},
"refactor": {
"title": "Refactor",
"description": "A code change that neither fixes a bug nor adds a feature (examples: add @deprecated, remove items marked @deprecated, organize code)"
},
"perf": {
"title": "Performance",
"description": "A code change that improves performance"
},
"test": {
"title": "Test",
"description": "Adding missing tests or correcting existing tests"
},
"build": {
"title": "Build",
"description": "Changes that affect the build system or external dependencies (examples: github actions, release-please)"
},
"chore": {
"title": "Chore",
"description": "Other changes that don't modify src or test files"
},
"revert": {
"title": "Revert",
"description": "Reverts a previous commit"
}
}
}
}
}