-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
48 lines (48 loc) · 1.2 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
{
"name": "@jlegrone/git-config",
"version": "0.0.0-semantically-released",
"author": "Jacob LeGrone",
"license": "MIT",
"description": "Shared git configuration",
"repository": {
"type": "git",
"url": "https://github.com/jlegrone/git-config"
},
"engines": {
"node": ">=8"
},
"scripts": {
"prebuild": "rimraf lib",
"build": "babel scripts --out-dir lib",
"commit": "git-cz",
"commitmsg": "commitlint -e",
"postinstall": "node lib/bootstrap-config",
"prepublish": "npm run build",
"preuninstall": "node lib/remove-config",
"semantic-release": "semantic-release",
"commit:retry": "git-cz --retry"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "commitizen.config.js"
}
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-angular": "^7.0.1",
"@commitlint/travis-cli": "^7.0.0",
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.6.0",
"commitizen": "^3.0.0",
"cz-customizable": "^5.2.0",
"husky": "^1.0.0",
"rimraf": "^2.6.1",
"semantic-release": "^15.6.0"
},
"dependencies": {
"chalk": "^2.1.0"
}
}