-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1004 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
42
43
44
{
"name": "@itmr.dev/bump",
"type": "module",
"version": "1.3.3",
"description": "a small cli tool to publish new code versions by creating git tags and updating package.json",
"repository": "github:itmr-dev/bump",
"homepage": "https://github.com/itmr-dev/bump#readme",
"bugs": {
"url": "https://github.com/itmr-dev/bump/issues"
},
"keywords": [
"bump",
"cli",
"git",
"publish",
"version"
],
"main": "./lib/index.js",
"bin": "./lib/index.js",
"scripts": {
"dev": "nodemon",
"build": "tsc",
"start": "node ./lib/index.js"
},
"author": "Marc Rufeis",
"license": "ISC",
"dependencies": {
"chalk": "^5.3.0",
"execa": "^8.0.1",
"inquirer": "^9.2.15",
"nanospinner": "^1.1.0",
"simple-git": "^3.22.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/node": "^20.11.23",
"nodemon": "^2.0.20",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"directories": {
"lib": "lib"
}
}