-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.87 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.87 KB
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
72
73
74
75
76
77
78
79
80
81
{
"name": "@tomerfi/version-bumper",
"version": "4.0.8",
"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": ">= 20.0.0",
"npm": ">= 10.0.0"
},
"scripts": {
"lint": "eslint src",
"test": "mocha --check-leaks --fail-zero --color --ui tdd --recursive ./tests/",
"test:coverage": "c8 mocha --check-leaks --fail-zero --color --ui tdd --recursive ./tests/"
},
"dependencies": {
"conventional-changelog-conventionalcommits": "^9.0.0",
"conventional-recommended-bump": "11.2.0",
"git-semver-tags": "^8.0.0",
"minimist": "^1.2.8",
"semver": "^7.6.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"c8": "^11.0.0",
"chai": "^4.4.1",
"chai-as-promised": "^8.0.0",
"eslint": "^10.0.0",
"globals": "^17.0.0",
"mocha": "^11.0.1",
"shelljs": "^0.10.0"
},
"overrides": {
"git-semver-tags": {
"@conventional-changelog/git-client": "^2.0.0"
},
"mocha": {
"serialize-javascript": "^7.0.3"
}
},
"c8": {
"all": true,
"include": [
"src/**/*.js"
],
"exclude": [
"tests/**"
],
"reporter": [
"text",
"lcov",
"html"
],
"check-coverage": false
}
}