-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
90 lines (90 loc) · 1.86 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@metahub/cz-conventional-commit",
"description": "Commitizen adapter following the conventional-changelog format, with emojis. 🎉",
"version": "0.0.0-development",
"author": "Pierre Vanduynslager",
"ava": {
"helpers": [
"test/helpers/**/*"
],
"files": [
"test/**/*.test.js"
]
},
"bugs": {
"url": "https://github.com/pvdlg/cz-conventional-commit/issues"
},
"dependencies": {
"commitizen": "^4.0.1",
"lodash": "^4.17.4",
"word-wrap": "^1.2.3"
},
"devDependencies": {
"@commitlint/core": "^8.0.0",
"ava": "^2.4.0",
"codecov": "^3.0.0",
"conventional-changelog-metahub": "^4.0.0",
"conventional-commits-parser": "^3.0.0",
"emoji-regex": "^8.0.0",
"nyc": "^15.0.0",
"semantic-release": "^17.0.0",
"sinon": "^9.0.0",
"stringz": "^2.0.0",
"xo": "^0.27.0"
},
"engines": {
"node": ">=10.18"
},
"files": [
"lib",
"index.js"
],
"homepage": "https://github.com/pvdlg/cz-conventional-commit#readme",
"keywords": [
"command-line",
"commit-hooks",
"commitizen",
"commitizen-adapter",
"conventional-commits",
"emoji",
"git"
],
"license": "MIT",
"main": "index.js",
"nyc": {
"include": [
"index.js",
"lib/**/*.js"
],
"reporter": [
"html",
"json",
"text"
],
"all": true
},
"peerDependencies": {
"commitizen": "*"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/pvdlg/cz-conventional-commit.git"
},
"scripts": {
"codecov": "codecov -f coverage/coverage-final.json",
"lint": "xo",
"pretest": "npm run lint",
"semantic-release": "semantic-release",
"test": "nyc ava -v"
},
"xo": {
"prettier": true
}
}