-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 895 Bytes
/
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
{
"name": "bumpp-version",
"version": "1.0.2",
"license": "MIT",
"sideEffects": false,
"main": "src/index.js",
"bin": {
"bumpp-version": "./bin/cli.mjs"
},
"files": [
"bin",
"src",
"LICENSE"
],
"author": "hunghg255",
"devDependencies": {
"@types/cross-spawn": "^6.0.3",
"git-scm-hooks": "^0.0.7",
"prettier": "^3.0.3",
"verify-commit-msg": "^0.0.10"
},
"dependencies": {
"cross-spawn": "^7.0.3",
"enquirer": "^2.4.1",
"picocolors": "^1.0.0",
"semver": "^7.5.4"
},
"git-hooks": {
"pre-commit": "npm run lint",
"commit-msg": "npm run verify-commit"
},
"keywords": [],
"homepage": "https://github.com/hunghg255/bumpp-version",
"repository": {
"type": "git",
"url": "https://github.com/hunghg255/bumpp-version"
},
"bugs": {
"url": "https://github.com/hunghg255/bumpp-version/issues"
}
}