-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·36 lines (36 loc) · 1.11 KB
/
package.json
File metadata and controls
executable file
·36 lines (36 loc) · 1.11 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
{
"name": "bump-simple",
"version": "1.0.29",
"description": "update changelog, add git tag, commit and publish the new version to npm in ONE COMMAND",
"main": "./dist/bump-simple.js",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"bump:major": "ts-node ./bump-simple.ts --major",
"bump:minor": "ts-node ./bump-simple.ts --minor",
"bump:patch": "ts-node ./bump-simple.ts --patch"
},
"author": "538ROMEO",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/top-kat/bump-simple.git"
},
"bugs": {
"url": "https://github.com/top-kat/bump-simple/issues"
},
"homepage": "https://github.com/top-kat/bump-simple",
"dependencies": {
"command-line-application": "^0.10.1",
"git-log-parser": "^1.2.0",
"inquirer": "^6.5.2",
"node-telegram-bot-api": "^0.40.0",
"topkat-utils": "^1.2.107"
},
"devDependencies": {
"@types/node": "^22.10.1"
},
"bin": {
"bump": "dist/bump-simple.js"
}
}