forked from commitizen/cz-conventional-changelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.07 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
{
"name": "cz-gitmojis",
"version": "1.0.5",
"description": "Commitizen adapter following gitmoji format.",
"main": "index.js",
"scripts": {
"commit": "git-cz",
"test": "mocha *.test.js",
"format": "prettier --write *.js"
},
"homepage": "https://github.com/jolbol1/cz-gitmojis",
"repository": {
"type": "git",
"url": "https://github.com/jolbol1/cz-gitmojis.git"
},
"engineStrict": true,
"engines": {
"node": ">= 12"
},
"author": "Jolbol1 <[email protected]>",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"gitmojis": "^3.13.4",
"lodash.map": "^4.5.1",
"longest": "^2.0.1",
"word-wrap": "^1.0.3"
},
"devDependencies": {
"@types/chai": "4.3.4",
"@types/mocha": "10.0.1",
"chai": "4.3.7",
"commitizen": "^4.2.5",
"cosmiconfig": "8.1.0",
"mocha": "10.2.0",
"mock-require": "3.0.3",
"prettier": "2.8.4",
"semver": "7.3.8"
},
"optionalDependencies": {
"@commitlint/load": "^17.0.3"
},
"config": {
"commitizen": {
"path": "./index.js"
}
}
}