UNPKG

892 BJSONView Raw
1{
2 "interactive": {
3 "desc": "Run interactive mode",
4 "type": "boolean",
5 "alias": ["I"]
6 },
7 "progress": {
8 "desc": "Show start/end progress reports for every task",
9 "type": "boolean",
10 "alias": ["P"]
11 },
12 "outputOnly": {
13 "desc": "Only show child_process output (null logger)",
14 "type": "boolean",
15 "alias": ["q"]
16 },
17 "fail": {
18 "desc": "Use --no-fail to stop failures affecting sibling tasks ",
19 "type": "boolean"
20 },
21 "force": {
22 "desc": "Force tasks to run that would be otherwise skipped",
23 "type": "boolean",
24 "alias": ["f"]
25 },
26 "skip": {
27 "desc": "Skip certain tasks",
28 "type": "array"
29 },
30 "dryRun": {
31 "desc": "Fake the execution of tasks for visualisation",
32 "type": "boolean",
33 "alias": ["D"]
34 },
35 "dryRunDuration": {
36 "desc": "How long should faked tasks take to complete",
37 "type": "number"
38 }
39}