-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.43 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
{
"name": "cz-cc",
"version": "1.0.1",
"description": "Commitizen adaptor that follows the Conventional Commits specification (with support for semantic emoji ✨)",
"keywords": [
"commitizen",
"adaptor",
"conventional-commit",
"conventional-changelog",
"cz-conventional-changelog",
"git",
"emoji"
],
"author": "Lchemist",
"license": "Apache-2.0",
"homepage": "https://github.com/Lchemist/cz-cc",
"repository": {
"type": "git",
"url": "git+https://github.com/Lchemist/cz-cc.git"
},
"files": [
"lib"
],
"main": "lib/index.js",
"engines": {
"node": ">=8",
"npm": ">=5.2"
},
"scripts": {
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"prebuild": "rimraf tsconfig.tsbuildinfo lib",
"build": "tsc -b",
"release": "semantic-release"
},
"dependencies": {
"chalk": "^4.1.0",
"inquirer-autocomplete-prompt": "^1.3.0",
"word-wrap": "^1.2.3"
},
"peerDependencies": {
"commitizen": ">=2"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/commitlint__load": "^8.3.1",
"@types/node": "^14.14.25",
"husky": "^5.0.9",
"pinst": "^2.1.4",
"rimraf": "^3.0.2",
"semantic-release": "^17.3.8",
"typescript": "^4.1.5"
}
}