forked from atlassian/cz-lerna-changelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.47 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
{
"name": "@jsdt/cz-lerna-changelog",
"description": "Fork of cz-lerna-changelog, see https://github.com/atlassian/cz-lerna-changelog.git",
"main": "lib/index.js",
"version": "0.1.10",
"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/jsdevtools/cz-lerna-changelog.git"
},
"author": "[email protected], original work by Joshua Nelson <[email protected]>, Joscha Feth <[email protected]>",
"license": "MIT",
"dependencies": {
"@jsdt/conventional-commit-types": "^0.1.9",
"@semantic-release/commit-analyzer": "^8.0.1",
"chalk": "^3.0.0",
"cz-customizable": "^4.0.0",
"inquirer-autocomplete-prompt": "^1.0.2",
"promise": "^8.0.3",
"shelljs": "0.8.3"
},
"peerDependencies": {
"lerna": "^3.0.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-register": "^6.18.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.1",
"inquirer": "^7.0.4",
"lerna": "^3.4.0",
"mocha": "^7.0.1",
"semantic-release": "^17.0.4"
},
"directories": {
"lib": "lib"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}