forked from hazeledmands/nsrun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.31 KB
/
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": "nsrun",
"version": "1.4.1",
"preferGlobal": true,
"description":
"A utility that will run npm scripts without all the logs from npm run-script.",
"scripts": {
"test": "mocha test.js",
"monkey-facts": "echo Monkeys are fun",
"more-monkey-facts": "echo Monkeys are frequently cheeky",
"tell-me-about-monkeys":
"npm run monkey-facts && npm run more-monkey-facts",
"give-a-monkey-name": "echo My monkey as that stupid name : $1",
"monkeys-dreams": "echo Monkeys dreams of $*, sometimes",
"more-monkeys-dreams":
"echo Monkeys dreams 2 things : $2 and $1, sometimes it $*",
"monkeys-knows-nothing": "echo Monkeys $1 $2 $3 $4 $5",
"premonkey-ride": "echo Ride on",
"monkey-ride": "echo Go monkey!",
"postmonkey-ride": "echo Ride off",
"fail": "exit 1",
"precommit": "pretty-quick --staged"
},
"keywords": ["npm", "npm run-script", "npm run"],
"author": "Max Edmands <[email protected]>",
"license": "ISC",
"dependencies": {
"lodash.find": "^4.4.0",
"minimist": "^1.2.0"
},
"devDependencies": {
"husky": "^0.14.3",
"mocha": "^5.0.0",
"nixt": "^0.5.0",
"prettier": "1.10.2",
"pretty-quick": "^1.2.3"
},
"bin": {
"nsrun": "./nsrun.js"
},
"publishConfig": {
"registry": "https://registry.npmjs.com/"
}
}