-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.09 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
88
89
90
91
92
{
"name": "npm-run-batch",
"version": "0.0.9",
"description": "npm run-script helper that allows running a bunch of run-scripts - in series or parallel!",
"keywords": [
"npm",
"run",
"script",
"scripts",
"sequence",
"series",
"parallel"
],
"author": "Shishir Ramam",
"repository": "sramam/npm-run-batch",
"license": "Apache-2.0",
"private": false,
"main": "index.js",
"bin": {
"npm-run-batch": "index.js",
"run-batch": "index.js"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "pkg-ok && mocha",
"sample:1": "node ./scripts/colored.js -t 1001",
"sample:2": "node ./scripts/simple.js -t 1002",
"sample:3": "node ./scripts/simple.js -t 1003",
"sample:4": "node ./scripts/colored.js -t 1004",
"sample:err": "node ./scripts/error.js",
"sample:env": "node ./scripts/env.js",
"batch:series": "node ./index.js",
"batch:parallel": "node ./index.js",
"batch:error": "node ./index.js",
"batch:dev": "cross-env RUN_BATCH=dev node ./index.js",
"batch:prod": "cross-env RUN_BATCH=prod node ./index.js",
"batch:ofbatches": "node ./index.js",
"pkg-ok": "pkg-ok"
},
"run-batch": {
"batch:series": [
"sample:1",
"sample:2",
"sample:4"
],
"batch:parallel": [
"sample:1",
[
"sample:2",
"sample:4"
],
"sample:3"
],
"batch:error": [
"sample:1",
"sample:err",
"sample:2"
],
"batch:dev": [
"sample:env",
"sample:1"
],
"batch:prod": [
"sample:env",
"sample:1"
],
"batch:ofbatches": [
"batch:dev",
"batch:prod"
]
},
"bugs": {
"url": "https://github.com/sramam/run-script-sequence/issues"
},
"homepage": "https://github.com/sramam/run-script-sequence#readme",
"devDependencies": {
"chai": "^4.2.0",
"cross-env": "^6.0.3",
"diff": "^4.0.1",
"mocha": "^6.2.1",
"pkg-ok": "^2.3.1",
"tmp": "^0.1.0"
},
"dependencies": {
"bluebird": "^3.7.0",
"chalk": "^2.4.2",
"commander": "^3.0.2",
"cross-spawn": "^7.0.0"
}
}