-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.03 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.03 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
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
{
"name": "madrun",
"version": "13.0.1",
"description": "CLI tool to run multiple npm-scripts in a madly comfortable way",
"main": "lib/madrun.js",
"type": "module",
"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",
"prepare": "node bin/madrun.js prepare"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coderaiser/madrun.git"
},
"bin": {
"madrun": "bin/madrun.js",
"madrun-completion": "bin/madrun-completion.js"
},
"keywords": [
"madrun",
"scripts",
"package",
"npm",
"npm run",
"npm-scripts",
"tool",
"cli",
"command",
"task",
"parallel",
"serial",
"run",
"commandline"
],
"author": "coderaiser <mnemonic.enemy@gmail.com> (http://coderaiser.github.io/)",
"bugs": {
"url": "https://github.com/coderaiser/madrun/issues"
},
"homepage": "https://github.com/coderaiser/madrun",
"license": "MIT",
"engines": {
"node": ">=22"
},
"dependencies": {
"@putout/cli-choose": "^4.0.0",
"@putout/engine-reporter": "^8.0.2",
"@putout/formatter-dump": "^7.0.0",
"all-object-keys": "^3.0.0",
"enquirer": "^2.3.6",
"find-up": "^8.0.0",
"jessy": "^5.0.0",
"mapsome": "^1.0.0",
"montag": "^1.0.0",
"once": "^1.4.0",
"putout": "^42.0.0",
"try-catch": "^4.0.1",
"try-to-catch": "^4.0.0",
"yargs-parser": "^22.0.0"
},
"devDependencies": {
"@putout/formatter-json": "^3.0.0",
"eslint": "^10.0.0",
"eslint-plugin-putout": "^31.0.0",
"nodemon": "^3.0.1",
"redlint": "^6.0.0",
"runsome": "^1.0.0",
"superc8": "^12.2.4",
"supertape": "^12.0.0"
},
"publishConfig": {
"access": "public"
}
}