forked from atlassian/cz-lerna-changelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.09 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
{
"name": "cz-lerna-changelog",
"description": "Commitizen adapter following the conventional-changelog format.",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"commit": "git-cz",
"test": "echo 'Tests need to be setup!'",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/atlassian/cz-lerna-changelog.git"
},
"author": "Joshua Nelson <jonelson@atlassian.com>, Joscha Feth <jfeth@atlassian.com>",
"license": "MIT",
"dependencies": {
"cz-conventional-changelog": "jpnelson/cz-conventional-changelog#a9a5468d",
"shelljs": "0.7.0"
},
"peerDependencies": {
"lerna": "*"
},
"devDependencies": {
"babel-cli": "6.8.0",
"babel-preset-es2015": "6.6.0",
"commitizen": "1.0.5",
"lerna": "jpnelson/lerna#8c0e5a44",
"semantic-release": "^4.3.5"
},
"directories": {
"lib": "lib"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}