-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.49 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
62
63
64
65
66
67
68
69
70
71
{
"name": "release-commit",
"description": "Commit (and tag) a release with automatic CHANGELOG.md and DEPENDENCIES.md updates",
"version": "1.1.0",
"main": "./index.js",
"bin": {
"release-commit": "./index.js"
},
"scripts": {
"release": "node index -t",
"lint": "xo --fix"
},
"dependencies": {
"chalk": "4.0.0",
"commander": "5.1.0",
"conventional-changelog-angular": "5.0.10",
"conventional-recommended-bump": "6.0.9",
"execa": "4.0.2",
"generate-changelog": "1.8.0",
"graceful-fs": "4.2.4",
"package-json-to-readme": "2.1.1"
},
"devDependencies": {
"cz-conventional-changelog": "3.2.0",
"eslint-config-xo-space": "0.24.0",
"xo": "0.30.0"
},
"issues": "https://github.com/78nine/release-commit/issues",
"keywords": [
"changelog",
"dependencies",
"generate",
"commit",
"deploy",
"git",
"log",
"release",
"workflow"
],
"author": "Greg Twardowski (https://github.com/tvardy)",
"repository": {
"type": "git",
"url": "git://github.com/78nine/release-commit.git"
},
"xo": {
"extends": "xo-space",
"envs": [
"node",
"es6"
],
"esnext": true,
"rules": {
"promise/prefer-await-to-then": "off",
"no-console": [
"warn"
],
"no-debugger": [
"error"
]
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": "10.x"
},
"license": "MIT"
}