-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
55 lines (55 loc) · 1.28 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
{
"name": "better-scripts",
"description": "The next level of npm scripts. An npm scripts runner. A better way to organize your npm scripts. Make redundant NPM scripts easier to read, maintain and use.",
"version": "0.4.3",
"type": "module",
"bin": {
"better-scripts": "bin/better-scripts.js"
},
"scripts": {
"scripts": "./bin/better-scripts.js"
},
"files": [
"bin",
"lib"
],
"dependencies": {
"chalk": "^5.0.1",
"cli-table3": "^0.6.2",
"cosmiconfig": "^7.0.1",
"pkg-dir": "^6.0.1",
"prompts": "^2.4.2",
"unist-util-visit": "^4.1.0",
"yargs": "^17.5.1"
},
"homepage": "https://better-scripts.vercel.app",
"keywords": [
"better scripts",
"cli",
"command",
"commandline",
"tool",
"npm",
"npm-scripts",
"run",
"task"
],
"engines": {
"node": "^14.13.1 || >=16.0.0"
},
"author": "Yoki Yu <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/iamyoki/better-scripts.git"
},
"license": "MIT",
"devDependencies": {
"mdast-builder": "^1.1.1",
"mdast-util-heading-range": "^3.1.0",
"remark-gfm": "^3.0.1",
"remark-parse": "^10.0.1",
"remark-stringify": "^10.0.2",
"typescript-json-schema": "^0.54.0",
"unified": "^10.1.2"
}
}