-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) Β· 2.04 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "redrun",
"version": "11.0.5",
"type": "module",
"description": "CLI tool to run multiple npm-scripts fast",
"main": "lib/redrun.js",
"scripts": {
"lint": "madrun lint",
"fix:lint": "madrun fix:lint",
"test": "madrun test",
"watch:test": "madrun watch:test",
"watch:tape": "madrun watch:tape",
"watch:coverage:base": "madrun watch:coverage:base",
"watch:coverage:tape": "madrun watch:coverage:tape",
"watch:coverage": "madrun watch:coverage",
"watcher": "madrun watcher",
"coverage": "madrun coverage",
"report": "madrun report",
"postpublish": "madrun postpublish"
},
"repository": {
"type": "git",
"url": "git://github.com/coderaiser/redrun.git"
},
"bin": {
"redrun": "bin/redrun.js",
"redrun-completion": "bin/redrun-completion.js"
},
"keywords": [
"redrun",
"scripts",
"package",
"npm",
"npm run",
"npm-scripts",
"tool",
"cli",
"commond",
"task",
"parallel",
"serial",
"run",
"tool",
"commandline",
"command"
],
"author": "coderaiser <[email protected]> (http://coderaiser.github.io/)",
"bugs": {
"url": "https://github.com/coderaiser/redrun/issues"
},
"homepage": "https://github.com/coderaiser/redrun",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"currify": "^4.0.0",
"debug": "^4.0.1",
"enquirer": "^2.3.6",
"envir": "^2.0.0",
"for-each-key": "^2.0.0",
"fullstore": "^3.0.0",
"madrun": "^10.0.1",
"mapsome": "^1.0.0",
"parent-directories": "^3.0.0",
"readjson": "^2.0.1",
"squad": "^3.0.0",
"string-replace-async": "^3.0.2",
"try-catch": "^3.0.0",
"try-to-catch": "^3.0.0",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"c8": "^9.1.0",
"eslint": "^8.0.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-putout": "^22.1.0",
"nodemon": "^3.0.1",
"npm-run-all": "^4.0.0",
"putout": "^35.0.3",
"supertape": "^10.0.0"
},
"publishConfig": {
"access": "public"
}
}