-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.31 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
{
"name": "semantic-release-demo",
"version": "1.2.0",
"description": "Test/Demo Repo for experimenting and demoing semantic release",
"main": "index.js",
"private": true,
"author": "Kim Holland <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/tripleaxis/semantic-release-demo.git"
},
"scripts": {
"start": "node ./index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"lint:js": "eslint **/*.js",
"prepush": "npm run lint:js",
"commit+": "git-cz",
"commitmsg": "validate-commit-msg",
"release": "corp-semantic-release --branch master"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.js"
}
},
"bugs": {
"url": "https://github.com/tripleaxis/semantic-release-demo/issues"
},
"homepage": "https://github.com/tripleaxis/semantic-release-demo#readme",
"devDependencies": {
"commitizen": "~2.9.6",
"corp-semantic-release": "~6.1.0",
"cz-customizable": "~5.0.0",
"eslint": "~3.19.0",
"eslint-config-airbnb": "~15.0.1",
"eslint-plugin-import": "~2.6.1",
"eslint-plugin-jsx-a11y": "~5.0.2",
"eslint-plugin-react": "~7.1.0",
"husky": "~0.14.2",
"validate-commit-msg": "~2.12.2"
}
}