UNPKG

1.76 kBJSONView Raw
1{
2 "categories": [
3 {
4 "title": "Run",
5 "description": "Running",
6 "tasks": {
7 "run:s": {
8 "description": "Explain sequence",
9 "code": {
10 "type": "bash",
11 "code": "fsr run-s run:one run:three run:two"
12 }
13 },
14 "run:p": {
15 "code": {
16 "type": "bash",
17 "code": "yarn fsr run-p run:one run:two"
18 }
19 },
20 "run:one": {
21 "code": {
22 "type": "bash",
23 "code": "echo \"~ ~ ONEEE\""
24 }
25 },
26 "run:two": {
27 "code": {
28 "type": "bash",
29 "code": "node testConsole.js"
30 }
31 },
32 "run:three": {
33 "code": {
34 "type": "bash",
35 "code": "node testInput.js"
36 }
37 }
38 }
39 }
40 ],
41 "allTasks": {
42 "run:s": {
43 "script": "fsr run-s run:one run:three run:two",
44 "type": "bash"
45 },
46 "run:p": {
47 "script": "yarn fsr run-p run:one run:two",
48 "type": "bash"
49 },
50 "run:one": {
51 "script": "echo \"~ ~ ONEEE\"",
52 "type": "bash"
53 },
54 "run:two": {
55 "script": "node testConsole.js",
56 "type": "bash"
57 },
58 "run:three": {
59 "script": "node testInput.js",
60 "type": "bash"
61 }
62 }
63}