-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 763 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 763 Bytes
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
{
"name": "version-bumper",
"version": "1.2.4",
"description": "GitHub action to automatically bump versions in any project and define your versioning schemes and rules to control your versioning pipeline.",
"main": "src/lib/index.js",
"scripts": {
"build": "tsc",
"test": "npm run build && jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.1.0",
"@actions/github": "^5.0.0",
"@octokit/webhooks": "^9.15.0",
"@types/jest": "^25.1.4",
"gh-action-stats": "0.0.9"
},
"devDependencies": {
"@types/node": "^13.13.52",
"jest": "^27.2.0",
"typescript": "^4.4.3"
},
"jest": {
"verbose": true,
"rootDir": "dist"
}
}