-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "@conventional-commits/git-recommended-bump",
"version": "0.0.0",
"description": "Recommend a semver version bump from git tags and Conventional Commits",
"main": "index.js",
"type": "commonjs",
"keywords": [
"Conventional Commits",
"what bump",
"semver",
"git"
],
"scripts": {
"test": "standard && c8 mocha",
"test:debug": "mocha --inspect --inspect-brk",
"coverage": "c8 --check-coverage mocha --timeout=8000"
},
"author": "Wes Todd <wes@wesleytodd.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git@github.com:conventional-commits/git-recommended-bump.git"
},
"bugs": {
"url": "https://github.com/conventional-commits/git-recommended-bump/issues"
},
"homepage": "https://github.com/conventional-commits/git-recommended-bump#readme",
"devDependencies": {
"c8": "^7.6.0",
"mocha": "^8.3.0",
"standard": "^16.0.3"
},
"dependencies": {
"@conventional-commits/parser": "^0.4.1",
"semver": "^7.3.4",
"unist-util-visit-parents": "^3.1.1"
}
}