-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
87 lines (87 loc) · 2.33 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
87
{
"name": "npm-run-all2",
"version": "7.0.1",
"description": "A CLI tool to run multiple npm-scripts in parallel or sequential. (Maintainence fork)",
"bin": {
"run-p": "bin/run-p/index.js",
"run-s": "bin/run-s/index.js",
"npm-run-all": "bin/npm-run-all/index.js",
"npm-run-all2": "bin/npm-run-all/index.js"
},
"main": "lib/index.js",
"engines": {
"node": "^18.17.0 || >=20.5.0",
"npm": ">= 9"
},
"scripts": {
"clean": "rm -rf coverage jsdoc \"test-workspace/{build,test.txt}\"",
"docs": "jsdoc -c jsdoc.json",
"check:installed-check": "installed-check --ignore-dev",
"check:eslint": "eslint",
"check:knip": "knip",
"precheck": "node scripts/make-slink.js",
"check": "node ./bin/run-p/index.js check:*",
"pretest-mocha": "node scripts/make-slink.js",
"test-mocha": "c8 mocha --timeout 120000",
"test": "node ./bin/run-s/index.js check test-mocha",
"watch": "mocha --timeout 120000 --watch --growl",
"version": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:' && git add CHANGELOG.md",
"preversion": "npm test",
"postversion": "git push --follow-tags && gh-release -y"
},
"dependencies": {
"ansi-styles": "^6.2.1",
"cross-spawn": "^7.0.3",
"memorystream": "^0.3.1",
"minimatch": "^9.0.0",
"pidtree": "^0.6.0",
"read-package-json-fast": "^4.0.0",
"shell-quote": "^1.7.3",
"which": "^5.0.0"
},
"devDependencies": {
"auto-changelog": "^2.2.0",
"c8": "^10.0.0",
"eslint": "^9.6.0",
"gh-release": "^7.0.0",
"installed-check": "^9.3.0",
"jsdoc": "^4.0.0",
"knip": "^5.23.3",
"mocha": "^10.0.0",
"neostandard": "^0.11.0",
"yarn": "^1.12.3"
},
"repository": {
"type": "git",
"url": "https://github.com/bcomnes/npm-run-all2.git"
},
"keywords": [
"cli",
"command",
"commandline",
"tool",
"npm",
"npm-scripts",
"run",
"sequential",
"serial",
"parallel",
"task"
],
"author": "Toru Nagashima",
"contributors": [
"Bret Comnes <[email protected]> (https://bret.io)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bcomnes/npm-run-all2/issues"
},
"homepage": "https://github.com/bcomnes/npm-run-all2",
"c8": {
"reporter": [
"html",
"lcovonly",
"text"
]
}
}