-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
85 lines (85 loc) · 2 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
{
"name": "madrun",
"version": "10.2.2",
"description": "CLI tool to run multiple npm-scripts in a madly comfortable way",
"main": "lib/madrun.js",
"type": "commonjs",
"scripts": {
"lint": "madrun lint",
"fresh:lint": "madrun fresh:lint",
"lint:fresh": "madrun lint:fresh",
"fix:lint": "madrun fix:lint",
"test": "madrun test",
"watch:test": "madrun watch:test",
"watch:tape": "madrun watch:tape",
"watch:lint": "madrun watch:lint",
"watcher": "madrun watcher",
"coverage": "madrun coverage",
"report": "madrun report",
"hello": "madrun hello"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coderaiser/madrun.git"
},
"bin": {
"madrun": "bin/madrun.mjs",
"madrun-completion": "bin/madrun-completion.js"
},
"keywords": [
"madrun",
"scripts",
"package",
"npm",
"npm run",
"npm-scripts",
"tool",
"cli",
"command",
"task",
"parallel",
"serial",
"run",
"tool",
"commandline",
"command"
],
"author": "coderaiser <[email protected]> (http://coderaiser.github.io/)",
"bugs": {
"url": "https://github.com/coderaiser/madrun/issues"
},
"homepage": "https://github.com/coderaiser/madrun",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"@putout/formatter-dump": "^5.0.0",
"all-object-keys": "^2.0.0",
"enquirer": "^2.3.6",
"find-up": "^7.0.0",
"jessy": "^3.0.0",
"mapsome": "^1.0.0",
"montag": "^1.0.0",
"once": "^1.4.0",
"putout": "^37.0.0",
"try-catch": "^3.0.0",
"try-to-catch": "^3.0.0",
"yargs-parser": "^21.0.0"
},
"devDependencies": {
"@putout/formatter-json": "^2.0.0",
"c8": "^10.1.2",
"escover": "^4.0.0",
"eslint": "^9.7.0",
"eslint-plugin-putout": "^23.1.0",
"mock-import": "^4.0.2",
"mock-require": "^3.0.3",
"nodemon": "^3.0.1",
"runsome": "^1.0.0",
"supertape": "^10.0.0"
},
"publishConfig": {
"access": "public"
}
}