forked from atlassian/cz-lerna-changelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.36 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
{
"name": "cz-lerna-changelog",
"description": "Commitizen adapter following the conventional-changelog format.",
"main": "lib/index.js",
"version": "2.0.2",
"scripts": {
"build": "babel src -d lib",
"commit": "git-cz",
"test": "mocha --compilers js:babel-register test/**/*.js",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/atlassian/cz-lerna-changelog.git"
},
"author": "Joshua Nelson <[email protected]>, Joscha Feth <[email protected]>",
"license": "MIT",
"dependencies": {
"@semantic-release/commit-analyzer": "^6.1.0",
"chalk": "^1.1.3",
"cz-customizable": "^4.0.0",
"inquirer-autocomplete-prompt": "^0.7.0",
"promise": "^7.1.1",
"shelljs": "0.7.0"
},
"peerDependencies": {
"lerna": "^3.0.0"
},
"devDependencies": {
"babel-cli": "6.8.0",
"babel-preset-es2015": "6.6.0",
"babel-register": "^6.18.0",
"commitizen": "^2.9.5",
"cz-conventional-changelog": "^1.2.0",
"inquirer": "^3.0.4",
"lerna": "^3.4.0",
"mocha": "^3.2.0",
"semantic-release": "^4.3.5"
},
"directories": {
"lib": "lib"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}