-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.74 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
{
"name": "conventional-bump",
"version": "1.0.6",
"description": "bump package.json version according to conventional-changelog",
"bin": {
"conventional-bump": "./index.js"
},
"scripts": {
"commit": "git-cz",
"commitmsg": "commitlint -e $GIT_PARAMS",
"precommit": "npm run lint-staged",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"preversion": "npm run test",
"lint": "eslint .",
"lint-staged": "lint-staged",
"test": "npm run lint"
},
"lint-staged": {
"*.js": [
"eslint"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/guillaumearm/conventional-bump.git"
},
"keywords": [
"npm",
"conventional-changelog",
"version-bump"
],
"author": "Guillaume ARM <trapcodien@hotmail.fr> (https://github.com/guillaumearm/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/guillaumearm/conventional-bump/issues"
},
"homepage": "https://github.com/guillaumearm/conventional-bump#readme",
"dependencies": {
"conventional-changelog-angular": "^5.0.2",
"conventional-recommended-bump": "^4.0.4",
"path": "^0.12.7",
"yargs": "^12.0.2"
},
"devDependencies": {
"@commitlint/cli": "^6.0.2",
"@commitlint/config-conventional": "^6.0.2",
"commitizen": "^3.0.4",
"conventional-changelog-cli": "^2.0.11",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.8.0",
"eslint-plugin-node": "^5.2.1",
"husky": "^0.14.3",
"lint-staged": "^6.0.1"
},
"peerDependencies": {
"conventional-changelog-cli": ">=2.0.0"
},
"engines": {
"node": ">=8.9.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}