-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.92 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
69
70
71
72
{
"name": "palette-printer-bash",
"private": true,
"description": "Collections of userstyles",
"main": "",
"scripts": {
"cz": "git-cz"
},
"keywords": [
"userstyle"
],
"author": "Alexander Davronov hinell@github.com <al.neodimg@gmail.com>",
"license": "ISC",
"devDependencies": {
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog",
"maxHeaderWidth": 100,
"maxLineWidth": 100,
"defaultType": "refactor",
"defaultScope": "",
"defaultSubject": "",
"defaultBody": "",
"defaultIssues": "",
"types": {
"feat": {
"description": "Adds feature",
"title": "Features"
},
"bug": {
"description": "Fixes bug",
"title": "Bug Fixes"
},
"docs": {
"description": "Documentation related changes",
"title": "Documentation"
},
"style": {
"description": "Cosmetic changes, formatting: tabs, white-space, missing semi-colons, commas, etc",
"title": "Styles"
},
"refactor": {
"description": "Code refactoring",
"title": "Refactoring"
},
"perf": {
"description": "Improves performance",
"title": "Performance Improvements"
},
"test": {
"description": "Adds, removes or fixes tests",
"title": "Tests"
},
"ci": {
"description": "Changes to our CI configuration files and scripts (example scopes: Travis, Circle, BrowserStack, SauceLabs)",
"title": "Continuous Integrations"
},
"tool": {
"description": "Update tools config, scripts etc.",
"title": "Tooling"
},
"revert": {
"description": "Reverts a previous commit",
"title": "Reverts"
}
}
}
}
}