forked from semantic-release/semantic-release
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.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": "lerna-semantic-release-main",
"description": "automated semver compliant package publishing, for lerna",
"author": "Joshua Nelson <[email protected]>, Joscha Feth <[email protected]>",
"bugs": {
"url": "https://github.com/atlassian/lerna-semantic-release/issues"
},
"config": {
"commitizen": {
"path": "node_modules/cz-lerna-changelog/"
},
"validate-commit-msg": {
"helpMessage": "Commit message violates the rules defined for this project. Please, execute `npm run commit` to generate a correct commit message with `commitizen`"
}
},
"engines": {
"node": ">=4",
"npm": ">=3"
},
"keywords": [
"author",
"automation",
"changelog",
"module",
"package",
"publish",
"release",
"semver",
"version",
"lerna"
],
"license": "MIT",
"devDependencies": {
"commitizen": "^2.9.5",
"cz-lerna-changelog": "1.2.1",
"eslint": "^3.14.1",
"husky": "^0.13.1",
"lerna": "2.0.0-beta.34",
"lerna-semantic-release": "^9.0.1",
"validate-commit-msg": "^2.11.1"
},
"repository": {
"type": "git",
"url": "https://github.com/atlassian/lerna-semantic-release.git"
},
"scripts": {
"commit": "git-cz",
"semantic-release": "lerna-semantic-release pre && lerna-semantic-release post && lerna-semantic-release perform",
"postinstall": "lerna bootstrap",
"precommit": "npm run lint",
"commitmsg": "validate-commit-msg",
"prepush": "npm run lint && npm run test",
"test": "lerna run test",
"lint": "eslint packages"
},
"release": {
"branch": "caribou"
},
"version": "0.0.0",
"private": true
}