-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.01 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.01 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
37
38
39
40
41
42
43
{
"name": "shelljs-release",
"version": "0.5.3",
"description": "A handy release script, using shelljs",
"main": "index.js",
"bin": {
"shelljs-release": "./index.js"
},
"scripts": {
"changelog": "shelljs-changelog",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1",
"release:major": "node index.js major",
"release:minor": "node index.js minor",
"release:patch": "node index.js patch"
},
"keywords": [
"release",
"package",
"shelljs",
"script"
],
"author": "Nate Fischer <ntfschr@gmail.com> (https://github.com/nfischer)",
"repository": {
"type": "git",
"url": "git://github.com/shelljs/release.git"
},
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"minimist": "^1.2.8",
"shelljs": "^0.10.0"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"shelljs-changelog": "^0.2.6"
}
}