-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 775 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 775 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
{
"name": "psrn",
"version": "1.15.1",
"description": "Advanced npm package script runner - make package script suck less",
"main": "index.js",
"type": "module",
"bin": {
"psrn": "./index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test1": "echo \"Error: no test specified\" && exit 1",
"publish-patch": "npm version patch & npm publish",
"publish-minor": "npm version minor & npm publish",
"publish-major": "npm version major & npm publish"
},
"keywords": [
"script",
"runner"
],
"author": "Chris Stead",
"license": "MIT",
"dependencies": {
"@inquirer/prompts": "^7.2.1",
"command-line-args": "^6.0.1",
"command-line-usage": "^7.0.3",
"node-persist": "^4.0.3"
}
}