-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.38 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
{
"name": "@tomerfi/version-bumper",
"version": "4.0.3",
"description": "A Node.js executable package determining semantic version bumps based on the conventional commits spec.",
"homepage": "https://github.com/TomerFi/version-bumper#readme",
"license": "ISC",
"author": {
"name": "Tomer Figenblat",
"url": "https://github.com/TomerFi"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TomerFi/version-bumper.git"
},
"bugs": "https://github.com/TomerFi/version-bumper/issues",
"keywords": [
"semver",
"semantic version",
"automation",
"cli",
"conventional commits"
],
"bin": {
"version-bumper": "src/cli.js"
},
"main": "src/index.js",
"files": [
"!*",
"src/bumper.js"
],
"type": "module",
"engines": {
"node": ">= 18.0.0",
"npm": ">= 9.0.0"
},
"scripts": {
"lint": "eslint src",
"test": "mocha --check-leaks --fail-zero --color --ui tdd --recursive ./tests/"
},
"dependencies": {
"conventional-recommended-bump": "10.0.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"git-semver-tags": "^8.0.0",
"minimist": "^1.2.8",
"semver": "^7.6.0"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"chai": "^4.4.1",
"chai-as-promised": "^8.0.0",
"eslint": "^9.1.1",
"globals": "^15.1.0",
"mocha": "^11.0.1",
"shelljs": "^0.8.5"
}
}