-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.63 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
{
"name": "@weareopensource/conventional-changelog",
"version": "0.0.0-development",
"description": "Commitizen adapter following the conventional-changelog format with emojis choice.",
"keywords": [
"commitlint",
"conventional-changelog",
"commitizen",
"cz-cli",
"emoji"
],
"main": "index.js",
"scripts": {
"commit": "npx cz",
"test": "jest",
"format": "prettier --write *.js",
"semantic-release": "semantic-release"
},
"homepage": "https://github.com/weareopensource/conventional-changelog",
"repository": {
"type": "git",
"url": "git+https://github.com/weareopensource/conventional-changelog.git"
},
"author": "Pierre Brisorgueil <[email protected]>",
"license": "MIT",
"dependencies": {
"chalk": "^5.0.0",
"conventional-commit-types": "^3.0.0",
"lodash.map": "^4.6.0",
"longest": "^2.0.1",
"right-pad": "^1.0.1",
"word-wrap": "^1.2.4"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"commitizen": "^4.1.2",
"conventional-changelog": "^3.1.21",
"cosmiconfig": "^8.0.0",
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.22.0",
"husky": "^8.0.1",
"jest": "^29.0.2",
"mock-require": "^3.0.3",
"prettier": "^2.0.5",
"semantic-release": "^21.0.0",
"semver": "^7.3.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"bugs": {
"url": "https://github.com/weareopensource/conventional-changelog/issues"
},
"directories": {
"lib": "lib"
}
}