-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 980 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
{
"name": "release-toolkit",
"version": "1.1.0",
"type": "module",
"description": "Release toolkit",
"bin": "./bin/index.js",
"scripts": {
"changelog": "node bin changelog",
"version-bump": "node bin version",
"release": "node bin release",
"verify": "node bin verify",
"test": "node --experimental-vm-modules $(yarn bin)/jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/helloitsjoe/release-toolkit.git"
},
"keywords": [],
"author": "Joe Boyle",
"license": "ISC",
"bugs": {
"url": "https://github.com/helloitsjoe/release-toolkit/issues"
},
"homepage": "https://github.com/helloitsjoe/release-toolkit#readme",
"dependencies": {
"axios": "^0.21.2",
"chalk": "^4.1.1",
"commander": "^7.2.0",
"inquirer": "^8.0.0",
"semver": "^7.3.5"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"eslint": "^7.25.0",
"jest": "^27.0.0-next.8",
"prettier": "^2.2.1"
}
}