-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
311 lines (311 loc) · 33.4 KB
/
package.json
File metadata and controls
311 lines (311 loc) · 33.4 KB
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
{
"name": "vlm_canvas_bugs",
"version": "0.0.1",
"description": "Replication package for the paper 'Exploring the Capabilities of VLMs to Detect Visual Bugs in HTML5 Canvas Applications.'",
"repository": "github:asgaardlab/vlm_canvas_bugs-code",
"license": "MIT",
"author": "Finlay Macklon",
"dependencies": {
"csv-writer": "^1.6.0",
"flatted": "^3.2.6",
"fs-extra-promise": "^1.0.1"
},
"devDependencies": {
"@playwright/test": "^1.42.1",
"@types/fs-extra-promise": "^1.0.13",
"@types/node": "^20.11.30",
"@types/pixi.js": "^5.0.0",
"commander": "^12.0.0",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5",
"pixi.js": "^7.4.2",
"spectorjs": "^0.9.30",
"typescript": "^5.4.3",
"express": "^4.18.3"
},
"scripts": {
"postinstall": "npx playwright install",
"understanding_pixi:build": "tsc -p 1c-Injecting_Visual_Bugs/investigation/understanding_pixi/tsconfig.json",
"understanding_pixi:create_call_graph": "node 1c-Injecting_Visual_Bugs/investigation/understanding_pixi/buildCallGraph.js",
"understanding_pixi:serve": "node 1c-Injecting_Visual_Bugs/investigation/understanding_pixi/server.js",
"build": "npm run build:collector && npm run build:e2e-test-scripts",
"build:e2e-test-scripts": "npm run build:transpile:e2e-test-scripts",
"build:collector": "npm run build:transpile:collector && npm run build:copy-js:collector",
"build:transpile:e2e-test-scripts": "tsc -p 1b-Creating_E2E_Test_Scripts/tsconfig.json",
"build:transpile:collector": "tsc -p 1d-Collecting_Screenshots/tsconfig.json",
"build:copy-js:collector": "npm run build:copy-clientjs:collector && npm run build:copy-shaders:collector && npm run build:copy-flatted:collector && npm run build:copy-spector:collector",
"build:copy-clientjs:collector": "copyfiles --up 2 '1d-Collecting_Screenshots/src/browser/**/*.js' dist/screenshot-collector",
"build:copy-shaders:collector": "copyfiles --up 1 '1c-Injecting_Visual_Bugs/shaders/*.js' dist/screenshot-collector/browser",
"build:copy-flatted:collector": "copyfiles --up 2 node_modules/flatted/min.js dist/screenshot-collector/modules/flatted",
"build:copy-spector:collector": "copyfiles --up 3 node_modules/spectorjs/dist/spector.bundle.js dist/screenshot-collector/modules/spectorjs",
"copy-snapshots-to-cloud": "if [ -n \"${DATA_DIRECTORY_PATH}\" ]; then rsync -rPt --ignore-existing Data/1d-Collecting_Screenshots \"$DATA_DIRECTORY_PATH/visual_bugs_dataset\"; else echo \"DATA_DIRECTORY_PATH not set\"; fi",
"test:self:sampling": "node dist/e2e_test_scripts/asgaardlab-caber-catch/sampling.test.js",
"test:self:bug_injecting:state": "node dist/e2e_test_scripts/asgaardlab-caber-catch/inject-bug.test.js --bug-name=state",
"test:self:bug_injecting:layout": "node dist/e2e_test_scripts/asgaardlab-caber-catch/inject-bug.test.js --bug-name=layout",
"test:self:bug_injecting:rendering": "node dist/e2e_test_scripts/asgaardlab-caber-catch/inject-bug.test.js --bug-name=rendering",
"test:self:bug_injecting:appearance": "node dist/e2e_test_scripts/asgaardlab-caber-catch/inject-bug.test.js --bug-name=appearance",
"test:self:parsing:clean": "APP_NAME=asgaardlab-caber-catch SAMPLE_NAME=clean npm run test:parse",
"test:self:parsing:state": "APP_NAME=asgaardlab-caber-catch SAMPLE_NAME=bug_layout npm run test:parse",
"test:self:parsing:rendering": "APP_NAME=asgaardlab-caber-catch SAMPLE_NAME=bug_rendering npm run test:parse",
"test:self:parsing:layout": "APP_NAME=asgaardlab-caber-catch SAMPLE_NAME=bug_layout npm run test:parse",
"test:self:parsing:appearance": "APP_NAME=asgaardlab-caber-catch SAMPLE_NAME=bug_appearance npm run test:parse",
"test:codegen": "cd dist/e2e_test_scripts && node codegen.test.js --name=$APP_NAME --port=$APP_PORT",
"test:codegen:https": "cd dist/e2e_test_scripts && node codegen.test.js --name=$APP_NAME --port=$APP_PORT --https",
"test:sample:clean": "cd dist/e2e_test_scripts && node $APP_NAME/sample.test.js --name=clean --bug=none",
"test:sample:bug": "cd dist/e2e_test_scripts && node $APP_NAME/sample.test.js --name=bug_$BUG_NAME --bug=$BUG_NAME",
"test:sample:bug-layout": "BUG_NAME=layout npm run test:sample:bug",
"test:sample:bug-rendering": "BUG_NAME=rendering npm run test:sample:bug",
"test:sample:bug-state": "BUG_NAME=state npm run test:sample:bug",
"test:sample:bug-appearance": "BUG_NAME=appearance npm run test:sample:bug",
"test:sample_all": "npm-run-all --serial \"test:sample_all:*\"",
"test:parse": "cd dist/screenshot-collector && node ./parse.js --app=$APP_NAME --sample=$SAMPLE_NAME",
"test:parse:clean": "SAMPLE_NAME=clean npm run test:parse",
"test:parse:bug-layout": "SAMPLE_NAME=bug_layout npm run test:parse",
"test:parse:bug-rendering": "SAMPLE_NAME=bug_rendering npm run test:parse",
"test:parse:bug-state": "SAMPLE_NAME=bug_state npm run test:parse",
"test:parse:bug-appearance": "SAMPLE_NAME=bug_appearance npm run test:parse",
"test:parse_all": "npm-run-all --serial \"test:parse_all:*\"",
"test:codegen:prefecthq-graphs": "APP_NAME=prefecthq-graphs APP_PORT=5173 npm run test:codegen",
"test:sample:clean:prefecthq-graphs": "APP_NAME=prefecthq-graphs npm run test:sample:clean",
"test:sample:bug-layout:prefecthq-graphs": "APP_NAME=prefecthq-graphs npm run test:sample:bug-layout",
"test:sample:bug-rendering:prefecthq-graphs": "APP_NAME=prefecthq-graphs npm run test:sample:bug-rendering",
"test:sample:bug-state:prefecthq-graphs": "APP_NAME=prefecthq-graphs npm run test:sample:bug-state",
"test:sample:bug-appearance:prefecthq-graphs": "APP_NAME=prefecthq-graphs npm run test:sample:bug-appearance",
"test:sample_all:prefecthq-graphs": "APP_NAME=prefecthq-graphs npm-run-all --serial \"test:sample:*:prefecthq-graphs\"",
"test:parse:clean:prefecthq-graphs": "APP_NAME=prefecthq-graphs npm run test:parse:clean",
"test:parse:bug-layout:prefecthq-graphs": "APP_NAME=prefecthq-graphs npm run test:parse:bug-layout",
"test:parse:bug-rendering:prefecthq-graphs": "APP_NAME=prefecthq-graphs npm run test:parse:bug-rendering",
"test:parse:bug-state:prefecthq-graphs": "APP_NAME=prefecthq-graphs npm run test:parse:bug-state",
"test:parse:bug-appearance:prefecthq-graphs": "APP_NAME=prefecthq-graphs npm run test:parse:bug-appearance",
"test:parse_all:prefecthq-graphs": "APP_NAME=prefecthq-graphs npm-run-all --serial \"test:parse:*:prefecthq-graphs\"",
"test:sample:clean:chase-manning-react-photo-studio": "APP_NAME=chase-manning-react-photo-studio npm run test:sample:clean",
"test:sample:bug-layout:chase-manning-react-photo-studio": "APP_NAME=chase-manning-react-photo-studio npm run test:sample:bug-layout",
"test:sample:bug-rendering:chase-manning-react-photo-studio": "APP_NAME=chase-manning-react-photo-studio npm run test:sample:bug-rendering",
"test:sample:bug-state:chase-manning-react-photo-studio": "APP_NAME=chase-manning-react-photo-studio npm run test:sample:bug-state",
"test:sample:bug-appearance:chase-manning-react-photo-studio": "APP_NAME=chase-manning-react-photo-studio npm run test:sample:bug-appearance",
"test:sample_all:chase-manning-react-photo-studio": "APP_NAME=chase-manning-react-photo-studio npm-run-all --serial \"test:sample:*:chase-manning-react-photo-studio\"",
"test:parse:clean:chase-manning-react-photo-studio": "APP_NAME=chase-manning-react-photo-studio npm run test:parse:clean",
"test:parse:bug-layout:chase-manning-react-photo-studio": "APP_NAME=chase-manning-react-photo-studio npm run test:parse:bug-layout",
"test:parse:bug-rendering:chase-manning-react-photo-studio": "APP_NAME=chase-manning-react-photo-studio npm run test:parse:bug-rendering",
"test:parse:bug-state:chase-manning-react-photo-studio": "APP_NAME=chase-manning-react-photo-studio npm run test:parse:bug-state",
"test:parse:bug-appearance:chase-manning-react-photo-studio": "APP_NAME=chase-manning-react-photo-studio npm run test:parse:bug-appearance",
"test:parse_all:chase-manning-react-photo-studio": "APP_NAME=chase-manning-react-photo-studio npm-run-all --serial \"test:parse:*:chase-manning-react-photo-studio\"",
"test:sample:clean:dimforge-rapier.js": "APP_NAME=dimforge-rapier.js npm run test:sample:clean",
"test:sample:bug-layout:dimforge-rapier.js": "APP_NAME=dimforge-rapier.js npm run test:sample:bug-layout",
"test:sample:bug-rendering:dimforge-rapier.js": "APP_NAME=dimforge-rapier.js npm run test:sample:bug-rendering",
"test:sample:bug-state:dimforge-rapier.js": "APP_NAME=dimforge-rapier.js npm run test:sample:bug-state",
"test:sample:bug-appearance:dimforge-rapier.js": "APP_NAME=dimforge-rapier.js npm run test:sample:bug-appearance",
"test:sample_all:dimforge-rapier.js": "APP_NAME=dimforge-rapier.js npm-run-all --serial \"test:sample:*:dimforge-rapier.js\"",
"test:parse:clean:dimforge-rapier.js": "APP_NAME=dimforge-rapier.js npm run test:parse:clean",
"test:parse:bug-layout:dimforge-rapier.js": "APP_NAME=dimforge-rapier.js npm run test:parse:bug-layout",
"test:parse:bug-rendering:dimforge-rapier.js": "APP_NAME=dimforge-rapier.js npm run test:parse:bug-rendering",
"test:parse:bug-state:dimforge-rapier.js": "APP_NAME=dimforge-rapier.js npm run test:parse:bug-state",
"test:parse:bug-appearance:dimforge-rapier.js": "APP_NAME=dimforge-rapier.js npm run test:parse:bug-appearance",
"test:parse_all:dimforge-rapier.js": "APP_NAME=dimforge-rapier.js npm-run-all --serial \"test:parse:*:dimforge-rapier.js\"",
"test:sample:clean:aldy-san-zero-neko": "APP_NAME=aldy-san-zero-neko npm run test:sample:clean",
"test:sample:bug-layout:aldy-san-zero-neko": "APP_NAME=aldy-san-zero-neko npm run test:sample:bug-layout",
"test:sample:bug-rendering:aldy-san-zero-neko": "APP_NAME=aldy-san-zero-neko npm run test:sample:bug-rendering",
"test:sample:bug-state:aldy-san-zero-neko": "APP_NAME=aldy-san-zero-neko npm run test:sample:bug-state",
"test:sample:bug-appearance:aldy-san-zero-neko": "APP_NAME=aldy-san-zero-neko npm run test:sample:bug-appearance",
"test:sample_all:aldy-san-zero-neko": "APP_NAME=aldy-san-zero-neko npm-run-all --serial \"test:sample:*:aldy-san-zero-neko\"",
"test:parse:clean:aldy-san-zero-neko": "APP_NAME=aldy-san-zero-neko npm run test:parse:clean",
"test:parse:bug-layout:aldy-san-zero-neko": "APP_NAME=aldy-san-zero-neko npm run test:parse:bug-layout",
"test:parse:bug-rendering:aldy-san-zero-neko": "APP_NAME=aldy-san-zero-neko npm run test:parse:bug-rendering",
"test:parse:bug-state:aldy-san-zero-neko": "APP_NAME=aldy-san-zero-neko npm run test:parse:bug-state",
"test:parse:bug-appearance:aldy-san-zero-neko": "APP_NAME=aldy-san-zero-neko npm run test:parse:bug-appearance",
"test:parse_all:aldy-san-zero-neko": "APP_NAME=aldy-san-zero-neko npm-run-all --serial \"test:parse:*:aldy-san-zero-neko\"",
"test:sample:clean:Aidymouse-Hexfriend": "APP_NAME=Aidymouse-Hexfriend npm run test:sample:clean",
"test:sample:bug-layout:Aidymouse-Hexfriend": "APP_NAME=Aidymouse-Hexfriend npm run test:sample:bug-layout",
"test:sample:bug-rendering:Aidymouse-Hexfriend": "APP_NAME=Aidymouse-Hexfriend npm run test:sample:bug-rendering",
"test:sample:bug-state:Aidymouse-Hexfriend": "APP_NAME=Aidymouse-Hexfriend npm run test:sample:bug-state",
"test:sample:bug-appearance:Aidymouse-Hexfriend": "APP_NAME=Aidymouse-Hexfriend npm run test:sample:bug-appearance",
"test:sample_all:Aidymouse-Hexfriend": "APP_NAME=Aidymouse-Hexfriend npm-run-all --serial \"test:sample:*:Aidymouse-Hexfriend\"",
"test:parse:clean:Aidymouse-Hexfriend": "APP_NAME=Aidymouse-Hexfriend npm run test:parse:clean",
"test:parse:bug-layout:Aidymouse-Hexfriend": "APP_NAME=Aidymouse-Hexfriend npm run test:parse:bug-layout",
"test:parse:bug-rendering:Aidymouse-Hexfriend": "APP_NAME=Aidymouse-Hexfriend npm run test:parse:bug-rendering",
"test:parse:bug-state:Aidymouse-Hexfriend": "APP_NAME=Aidymouse-Hexfriend npm run test:parse:bug-state",
"test:parse:bug-appearance:Aidymouse-Hexfriend": "APP_NAME=Aidymouse-Hexfriend npm run test:parse:bug-appearance",
"test:parse_all:Aidymouse-Hexfriend": "APP_NAME=Aidymouse-Hexfriend npm-run-all --serial \"test:parse:*:Aidymouse-Hexfriend\"",
"test:sample:clean:equinor-esv-intersection": "APP_NAME=equinor-esv-intersection npm run test:sample:clean",
"test:sample:bug-layout:equinor-esv-intersection": "APP_NAME=equinor-esv-intersection npm run test:sample:bug-layout",
"test:sample:bug-rendering:equinor-esv-intersection": "APP_NAME=equinor-esv-intersection npm run test:sample:bug-rendering",
"test:sample:bug-state:equinor-esv-intersection": "APP_NAME=equinor-esv-intersection npm run test:sample:bug-state",
"test:sample:bug-appearance:equinor-esv-intersection": "APP_NAME=equinor-esv-intersection npm run test:sample:bug-appearance",
"test:sample_all:equinor-esv-intersection": "APP_NAME=equinor-esv-intersection npm-run-all --serial \"test:sample:*:equinor-esv-intersection\"",
"test:parse:clean:equinor-esv-intersection": "APP_NAME=equinor-esv-intersection npm run test:parse:clean",
"test:parse:bug-layout:equinor-esv-intersection": "APP_NAME=equinor-esv-intersection npm run test:parse:bug-layout",
"test:parse:bug-rendering:equinor-esv-intersection": "APP_NAME=equinor-esv-intersection npm run test:parse:bug-rendering",
"test:parse:bug-state:equinor-esv-intersection": "APP_NAME=equinor-esv-intersection npm run test:parse:bug-state",
"test:parse:bug-appearance:equinor-esv-intersection": "APP_NAME=equinor-esv-intersection npm run test:parse:bug-appearance",
"test:parse_all:equinor-esv-intersection": "APP_NAME=equinor-esv-intersection npm-run-all --serial \"test:parse:*:equinor-esv-intersection\"",
"test:sample:clean:MichaelMakesGames-reflector": "APP_NAME=MichaelMakesGames-reflector npm run test:sample:clean",
"test:sample:bug-layout:MichaelMakesGames-reflector": "APP_NAME=MichaelMakesGames-reflector npm run test:sample:bug-layout",
"test:sample:bug-rendering:MichaelMakesGames-reflector": "APP_NAME=MichaelMakesGames-reflector npm run test:sample:bug-rendering",
"test:sample:bug-state:MichaelMakesGames-reflector": "APP_NAME=MichaelMakesGames-reflector npm run test:sample:bug-state",
"test:sample:bug-appearance:MichaelMakesGames-reflector": "APP_NAME=MichaelMakesGames-reflector npm run test:sample:bug-appearance",
"test:sample_all:MichaelMakesGames-reflector": "APP_NAME=MichaelMakesGames-reflector npm-run-all --serial \"test:sample:*:MichaelMakesGames-reflector\"",
"test:parse:clean:MichaelMakesGames-reflector": "APP_NAME=MichaelMakesGames-reflector npm run test:parse:clean",
"test:parse:bug-layout:MichaelMakesGames-reflector": "APP_NAME=MichaelMakesGames-reflector npm run test:parse:bug-layout",
"test:parse:bug-rendering:MichaelMakesGames-reflector": "APP_NAME=MichaelMakesGames-reflector npm run test:parse:bug-rendering",
"test:parse:bug-state:MichaelMakesGames-reflector": "APP_NAME=MichaelMakesGames-reflector npm run test:parse:bug-state",
"test:parse:bug-appearance:MichaelMakesGames-reflector": "APP_NAME=MichaelMakesGames-reflector npm run test:parse:bug-appearance",
"test:parse_all:MichaelMakesGames-reflector": "APP_NAME=MichaelMakesGames-reflector npm-run-all --serial \"test:parse:*:MichaelMakesGames-reflector\"",
"test:sample:clean:tulustul-ants-sandbox": "APP_NAME=tulustul-ants-sandbox npm run test:sample:clean",
"test:sample:bug-layout:tulustul-ants-sandbox": "APP_NAME=tulustul-ants-sandbox npm run test:sample:bug-layout",
"test:sample:bug-rendering:tulustul-ants-sandbox": "APP_NAME=tulustul-ants-sandbox npm run test:sample:bug-rendering",
"test:sample:bug-state:tulustul-ants-sandbox": "APP_NAME=tulustul-ants-sandbox npm run test:sample:bug-state",
"test:sample:bug-appearance:tulustul-ants-sandbox": "APP_NAME=tulustul-ants-sandbox npm run test:sample:bug-appearance",
"test:sample_all:tulustul-ants-sandbox": "APP_NAME=tulustul-ants-sandbox npm-run-all --serial \"test:sample:*:tulustul-ants-sandbox\"",
"test:parse:clean:tulustul-ants-sandbox": "APP_NAME=tulustul-ants-sandbox npm run test:parse:clean",
"test:parse:bug-layout:tulustul-ants-sandbox": "APP_NAME=tulustul-ants-sandbox npm run test:parse:bug-layout",
"test:parse:bug-rendering:tulustul-ants-sandbox": "APP_NAME=tulustul-ants-sandbox npm run test:parse:bug-rendering",
"test:parse:bug-state:tulustul-ants-sandbox": "APP_NAME=tulustul-ants-sandbox npm run test:parse:bug-state",
"test:parse:bug-appearance:tulustul-ants-sandbox": "APP_NAME=tulustul-ants-sandbox npm run test:parse:bug-appearance",
"test:parse_all:tulustul-ants-sandbox": "APP_NAME=tulustul-ants-sandbox npm-run-all --serial \"test:parse:*:tulustul-ants-sandbox\"",
"test:sample:clean:coderetreat-coderetreat.org": "APP_NAME=coderetreat-coderetreat.org npm run test:sample:clean",
"test:sample:bug-layout:coderetreat-coderetreat.org": "APP_NAME=coderetreat-coderetreat.org npm run test:sample:bug-layout",
"test:sample:bug-rendering:coderetreat-coderetreat.org": "APP_NAME=coderetreat-coderetreat.org npm run test:sample:bug-rendering",
"test:sample:bug-state:coderetreat-coderetreat.org": "APP_NAME=coderetreat-coderetreat.org npm run test:sample:bug-state",
"test:sample:bug-appearance:coderetreat-coderetreat.org": "APP_NAME=coderetreat-coderetreat.org npm run test:sample:bug-appearance",
"test:sample_all:coderetreat-coderetreat.org": "APP_NAME=coderetreat-coderetreat.org npm-run-all --serial \"test:sample:*:coderetreat-coderetreat.org\"",
"test:parse:clean:coderetreat-coderetreat.org": "APP_NAME=coderetreat-coderetreat.org npm run test:parse:clean",
"test:parse:bug-layout:coderetreat-coderetreat.org": "APP_NAME=coderetreat-coderetreat.org npm run test:parse:bug-layout",
"test:parse:bug-rendering:coderetreat-coderetreat.org": "APP_NAME=coderetreat-coderetreat.org npm run test:parse:bug-rendering",
"test:parse:bug-state:coderetreat-coderetreat.org": "APP_NAME=coderetreat-coderetreat.org npm run test:parse:bug-state",
"test:parse:bug-appearance:coderetreat-coderetreat.org": "APP_NAME=coderetreat-coderetreat.org npm run test:parse:bug-appearance",
"test:parse_all:coderetreat-coderetreat.org": "APP_NAME=coderetreat-coderetreat.org npm-run-all --serial \"test:parse:*:coderetreat-coderetreat.org\"",
"test:sample:clean:getkey-ble": "APP_NAME=getkey-ble npm run test:sample:clean",
"test:sample:bug-layout:getkey-ble": "APP_NAME=getkey-ble npm run test:sample:bug-layout",
"test:sample:bug-rendering:getkey-ble": "APP_NAME=getkey-ble npm run test:sample:bug-rendering",
"test:sample:bug-state:getkey-ble": "APP_NAME=getkey-ble npm run test:sample:bug-state",
"test:sample:bug-appearance:getkey-ble": "APP_NAME=getkey-ble npm run test:sample:bug-appearance",
"test:sample_all:getkey-ble": "APP_NAME=getkey-ble npm-run-all --serial \"test:sample:*:getkey-ble\"",
"test:parse:clean:getkey-ble": "APP_NAME=getkey-ble npm run test:parse:clean",
"test:parse:bug-layout:getkey-ble": "APP_NAME=getkey-ble npm run test:parse:bug-layout",
"test:parse:bug-rendering:getkey-ble": "APP_NAME=getkey-ble npm run test:parse:bug-rendering",
"test:parse:bug-state:getkey-ble": "APP_NAME=getkey-ble npm run test:parse:bug-state",
"test:parse:bug-appearance:getkey-ble": "APP_NAME=getkey-ble npm run test:parse:bug-appearance",
"test:parse_all:getkey-ble": "APP_NAME=getkey-ble npm-run-all --serial \"test:parse:*:getkey-ble\"",
"test:sample:clean:solaris-games-solaris": "APP_NAME=solaris-games-solaris npm run test:sample:clean",
"test:sample:bug-layout:solaris-games-solaris": "APP_NAME=solaris-games-solaris npm run test:sample:bug-layout",
"test:sample:bug-rendering:solaris-games-solaris": "APP_NAME=solaris-games-solaris npm run test:sample:bug-rendering",
"test:sample:bug-state:solaris-games-solaris": "APP_NAME=solaris-games-solaris npm run test:sample:bug-state",
"test:sample:bug-appearance:solaris-games-solaris": "APP_NAME=solaris-games-solaris npm run test:sample:bug-appearance",
"test:sample_all:solaris-games-solaris": "APP_NAME=solaris-games-solaris npm-run-all --serial \"test:sample:*:solaris-games-solaris\"",
"test:parse:clean:solaris-games-solaris": "APP_NAME=solaris-games-solaris npm run test:parse:clean",
"test:parse:bug-layout:solaris-games-solaris": "APP_NAME=solaris-games-solaris npm run test:parse:bug-layout",
"test:parse:bug-rendering:solaris-games-solaris": "APP_NAME=solaris-games-solaris npm run test:parse:bug-rendering",
"test:parse:bug-state:solaris-games-solaris": "APP_NAME=solaris-games-solaris npm run test:parse:bug-state",
"test:parse:bug-appearance:solaris-games-solaris": "APP_NAME=solaris-games-solaris npm run test:parse:bug-appearance",
"test:parse_all:solaris-games-solaris": "APP_NAME=solaris-games-solaris npm-run-all --serial \"test:parse:*:solaris-games-solaris\"",
"test:sample:clean:ha-shine-wasm-tetris": "APP_NAME=ha-shine-wasm-tetris npm run test:sample:clean",
"test:sample:bug-layout:ha-shine-wasm-tetris": "APP_NAME=ha-shine-wasm-tetris npm run test:sample:bug-layout",
"test:sample:bug-rendering:ha-shine-wasm-tetris": "APP_NAME=ha-shine-wasm-tetris npm run test:sample:bug-rendering",
"test:sample:bug-state:ha-shine-wasm-tetris": "APP_NAME=ha-shine-wasm-tetris npm run test:sample:bug-state",
"test:sample:bug-appearance:ha-shine-wasm-tetris": "APP_NAME=ha-shine-wasm-tetris npm run test:sample:bug-appearance",
"test:sample_all:ha-shine-wasm-tetris": "APP_NAME=ha-shine-wasm-tetris npm-run-all --serial \"test:sample:*:ha-shine-wasm-tetris\"",
"test:parse:clean:ha-shine-wasm-tetris": "APP_NAME=ha-shine-wasm-tetris npm run test:parse:clean",
"test:parse:bug-layout:ha-shine-wasm-tetris": "APP_NAME=ha-shine-wasm-tetris npm run test:parse:bug-layout",
"test:parse:bug-rendering:ha-shine-wasm-tetris": "APP_NAME=ha-shine-wasm-tetris npm run test:parse:bug-rendering",
"test:parse:bug-state:ha-shine-wasm-tetris": "APP_NAME=ha-shine-wasm-tetris npm run test:parse:bug-state",
"test:parse:bug-appearance:ha-shine-wasm-tetris": "APP_NAME=ha-shine-wasm-tetris npm run test:parse:bug-appearance",
"test:parse_all:ha-shine-wasm-tetris": "APP_NAME=ha-shine-wasm-tetris npm-run-all --serial \"test:parse:*:ha-shine-wasm-tetris\"",
"test:sample:clean:higlass-higlass": "APP_NAME=higlass-higlass npm run test:sample:clean",
"test:sample:bug-layout:higlass-higlass": "APP_NAME=higlass-higlass npm run test:sample:bug-layout",
"test:sample:bug-rendering:higlass-higlass": "APP_NAME=higlass-higlass npm run test:sample:bug-rendering",
"test:sample:bug-state:higlass-higlass": "APP_NAME=higlass-higlass npm run test:sample:bug-state",
"test:sample:bug-appearance:higlass-higlass": "APP_NAME=higlass-higlass npm run test:sample:bug-appearance",
"test:sample_all:higlass-higlass": "APP_NAME=higlass-higlass npm-run-all --serial \"test:sample:*:higlass-higlass\"",
"test:parse:clean:higlass-higlass": "APP_NAME=higlass-higlass npm run test:parse:clean",
"test:parse:bug-layout:higlass-higlass": "APP_NAME=higlass-higlass npm run test:parse:bug-layout",
"test:parse:bug-rendering:higlass-higlass": "APP_NAME=higlass-higlass npm run test:parse:bug-rendering",
"test:parse:bug-state:higlass-higlass": "APP_NAME=higlass-higlass npm run test:parse:bug-state",
"test:parse:bug-appearance:higlass-higlass": "APP_NAME=higlass-higlass npm run test:parse:bug-appearance",
"test:parse_all:higlass-higlass": "APP_NAME=higlass-higlass npm-run-all --serial \"test:parse:*:higlass-higlass\"",
"test:sample:clean:mehanix-arcada": "APP_NAME=mehanix-arcada npm run test:sample:clean",
"test:sample:bug-layout:mehanix-arcada": "APP_NAME=mehanix-arcada npm run test:sample:bug-layout",
"test:sample:bug-rendering:mehanix-arcada": "APP_NAME=mehanix-arcada npm run test:sample:bug-rendering",
"test:sample:bug-state:mehanix-arcada": "APP_NAME=mehanix-arcada npm run test:sample:bug-state",
"test:sample:bug-appearance:mehanix-arcada": "APP_NAME=mehanix-arcada npm run test:sample:bug-appearance",
"test:sample_all:mehanix-arcada": "APP_NAME=mehanix-arcada npm-run-all --serial \"test:sample:*:mehanix-arcada\"",
"test:parse:clean:mehanix-arcada": "APP_NAME=mehanix-arcada npm run test:parse:clean",
"test:parse:bug-layout:mehanix-arcada": "APP_NAME=mehanix-arcada npm run test:parse:bug-layout",
"test:parse:bug-rendering:mehanix-arcada": "APP_NAME=mehanix-arcada npm run test:parse:bug-rendering",
"test:parse:bug-state:mehanix-arcada": "APP_NAME=mehanix-arcada npm run test:parse:bug-state",
"test:parse:bug-appearance:mehanix-arcada": "APP_NAME=mehanix-arcada npm run test:parse:bug-appearance",
"test:parse_all:mehanix-arcada": "APP_NAME=mehanix-arcada npm-run-all --serial \"test:parse:*:mehanix-arcada\"",
"test:sample:clean:ourcade-ecs-dependency-injection": "APP_NAME=ourcade-ecs-dependency-injection npm run test:sample:clean",
"test:sample:bug-layout:ourcade-ecs-dependency-injection": "APP_NAME=ourcade-ecs-dependency-injection npm run test:sample:bug-layout",
"test:sample:bug-rendering:ourcade-ecs-dependency-injection": "APP_NAME=ourcade-ecs-dependency-injection npm run test:sample:bug-rendering",
"test:sample:bug-state:ourcade-ecs-dependency-injection": "APP_NAME=ourcade-ecs-dependency-injection npm run test:sample:bug-state",
"test:sample:bug-appearance:ourcade-ecs-dependency-injection": "APP_NAME=ourcade-ecs-dependency-injection npm run test:sample:bug-appearance",
"test:sample_all:ourcade-ecs-dependency-injection": "APP_NAME=ourcade-ecs-dependency-injection npm-run-all --serial \"test:sample:*:ourcade-ecs-dependency-injection\"",
"test:parse:clean:ourcade-ecs-dependency-injection": "APP_NAME=ourcade-ecs-dependency-injection npm run test:parse:clean",
"test:parse:bug-layout:ourcade-ecs-dependency-injection": "APP_NAME=ourcade-ecs-dependency-injection npm run test:parse:bug-layout",
"test:parse:bug-rendering:ourcade-ecs-dependency-injection": "APP_NAME=ourcade-ecs-dependency-injection npm run test:parse:bug-rendering",
"test:parse:bug-state:ourcade-ecs-dependency-injection": "APP_NAME=ourcade-ecs-dependency-injection npm run test:parse:bug-state",
"test:parse:bug-appearance:ourcade-ecs-dependency-injection": "APP_NAME=ourcade-ecs-dependency-injection npm run test:parse:bug-appearance",
"test:parse_all:ourcade-ecs-dependency-injection": "APP_NAME=ourcade-ecs-dependency-injection npm-run-all --serial \"test:parse:*:ourcade-ecs-dependency-injection\"",
"test:sample:clean:p5aholic-playground": "APP_NAME=p5aholic-playground npm run test:sample:clean",
"test:sample:bug-layout:p5aholic-playground": "APP_NAME=p5aholic-playground npm run test:sample:bug-layout",
"test:sample:bug-rendering:p5aholic-playground": "APP_NAME=p5aholic-playground npm run test:sample:bug-rendering",
"test:sample:bug-state:p5aholic-playground": "APP_NAME=p5aholic-playground npm run test:sample:bug-state",
"test:sample:bug-appearance:p5aholic-playground": "APP_NAME=p5aholic-playground npm run test:sample:bug-appearance",
"test:sample_all:p5aholic-playground": "APP_NAME=p5aholic-playground npm-run-all --serial \"test:sample:*:p5aholic-playground\"",
"test:parse:clean:p5aholic-playground": "APP_NAME=p5aholic-playground npm run test:parse:clean",
"test:parse:bug-layout:p5aholic-playground": "APP_NAME=p5aholic-playground npm run test:parse:bug-layout",
"test:parse:bug-rendering:p5aholic-playground": "APP_NAME=p5aholic-playground npm run test:parse:bug-rendering",
"test:parse:bug-state:p5aholic-playground": "APP_NAME=p5aholic-playground npm run test:parse:bug-state",
"test:parse:bug-appearance:p5aholic-playground": "APP_NAME=p5aholic-playground npm run test:parse:bug-appearance",
"test:parse_all:p5aholic-playground": "APP_NAME=p5aholic-playground npm-run-all --serial \"test:parse:*:p5aholic-playground\"",
"test:sample:clean:starwards-starwards": "APP_NAME=starwards-starwards npm run test:sample:clean",
"test:sample:bug-layout:starwards-starwards": "APP_NAME=starwards-starwards npm run test:sample:bug-layout",
"test:sample:bug-rendering:starwards-starwards": "APP_NAME=starwards-starwards npm run test:sample:bug-rendering",
"test:sample:bug-state:starwards-starwards": "APP_NAME=starwards-starwards npm run test:sample:bug-state",
"test:sample:bug-appearance:starwards-starwards": "APP_NAME=starwards-starwards npm run test:sample:bug-appearance",
"test:sample_all:starwards-starwards": "APP_NAME=starwards-starwards npm-run-all --serial \"test:sample:*:starwards-starwards\"",
"test:parse:clean:starwards-starwards": "APP_NAME=starwards-starwards npm run test:parse:clean",
"test:parse:bug-layout:starwards-starwards": "APP_NAME=starwards-starwards npm run test:parse:bug-layout",
"test:parse:bug-rendering:starwards-starwards": "APP_NAME=starwards-starwards npm run test:parse:bug-rendering",
"test:parse:bug-state:starwards-starwards": "APP_NAME=starwards-starwards npm run test:parse:bug-state",
"test:parse:bug-appearance:starwards-starwards": "APP_NAME=starwards-starwards npm run test:parse:bug-appearance",
"test:parse_all:starwards-starwards": "APP_NAME=starwards-starwards npm-run-all --serial \"test:parse:*:starwards-starwards\"",
"test:sample:clean:uia4w-uia-wafermap": "APP_NAME=uia4w-uia-wafermap npm run test:sample:clean",
"test:sample:bug-layout:uia4w-uia-wafermap": "APP_NAME=uia4w-uia-wafermap npm run test:sample:bug-layout",
"test:sample:bug-rendering:uia4w-uia-wafermap": "APP_NAME=uia4w-uia-wafermap npm run test:sample:bug-rendering",
"test:sample:bug-state:uia4w-uia-wafermap": "APP_NAME=uia4w-uia-wafermap npm run test:sample:bug-state",
"test:sample:bug-appearance:uia4w-uia-wafermap": "APP_NAME=uia4w-uia-wafermap npm run test:sample:bug-appearance",
"test:sample_all:uia4w-uia-wafermap": "APP_NAME=uia4w-uia-wafermap npm-run-all --serial \"test:sample:*:uia4w-uia-wafermap\"",
"test:parse:clean:uia4w-uia-wafermap": "APP_NAME=uia4w-uia-wafermap npm run test:parse:clean",
"test:parse:bug-layout:uia4w-uia-wafermap": "APP_NAME=uia4w-uia-wafermap npm run test:parse:bug-layout",
"test:parse:bug-rendering:uia4w-uia-wafermap": "APP_NAME=uia4w-uia-wafermap npm run test:parse:bug-rendering",
"test:parse:bug-state:uia4w-uia-wafermap": "APP_NAME=uia4w-uia-wafermap npm run test:parse:bug-state",
"test:parse:bug-appearance:uia4w-uia-wafermap": "APP_NAME=uia4w-uia-wafermap npm run test:parse:bug-appearance",
"test:parse_all:uia4w-uia-wafermap": "APP_NAME=uia4w-uia-wafermap npm-run-all --serial \"test:parse:*:uia4w-uia-wafermap\"",
"test:sample:clean:VoiceSpaceUnder5-VoiceSpace": "APP_NAME=VoiceSpaceUnder5-VoiceSpace npm run test:sample:clean",
"test:sample:bug-layout:VoiceSpaceUnder5-VoiceSpace": "APP_NAME=VoiceSpaceUnder5-VoiceSpace npm run test:sample:bug-layout",
"test:sample:bug-rendering:VoiceSpaceUnder5-VoiceSpace": "APP_NAME=VoiceSpaceUnder5-VoiceSpace npm run test:sample:bug-rendering",
"test:sample:bug-state:VoiceSpaceUnder5-VoiceSpace": "APP_NAME=VoiceSpaceUnder5-VoiceSpace npm run test:sample:bug-state",
"test:sample:bug-appearance:VoiceSpaceUnder5-VoiceSpace": "APP_NAME=VoiceSpaceUnder5-VoiceSpace npm run test:sample:bug-appearance",
"test:sample_all:VoiceSpaceUnder5-VoiceSpace": "APP_NAME=VoiceSpaceUnder5-VoiceSpace npm-run-all --serial \"test:sample:*:VoiceSpaceUnder5-VoiceSpace\"",
"test:parse:clean:VoiceSpaceUnder5-VoiceSpace": "APP_NAME=VoiceSpaceUnder5-VoiceSpace npm run test:parse:clean",
"test:parse:bug-layout:VoiceSpaceUnder5-VoiceSpace": "APP_NAME=VoiceSpaceUnder5-VoiceSpace npm run test:parse:bug-layout",
"test:parse:bug-rendering:VoiceSpaceUnder5-VoiceSpace": "APP_NAME=VoiceSpaceUnder5-VoiceSpace npm run test:parse:bug-rendering",
"test:parse:bug-state:VoiceSpaceUnder5-VoiceSpace": "APP_NAME=VoiceSpaceUnder5-VoiceSpace npm run test:parse:bug-state",
"test:parse:bug-appearance:VoiceSpaceUnder5-VoiceSpace": "APP_NAME=VoiceSpaceUnder5-VoiceSpace npm run test:parse:bug-appearance",
"test:parse_all:VoiceSpaceUnder5-VoiceSpace": "APP_NAME=VoiceSpaceUnder5-VoiceSpace npm-run-all --serial \"test:parse:*:VoiceSpaceUnder5-VoiceSpace\"",
"test:sample:clean:Zikoat-infinite-minesweeper": "APP_NAME=Zikoat-infinite-minesweeper npm run test:sample:clean",
"test:sample:bug-layout:Zikoat-infinite-minesweeper": "APP_NAME=Zikoat-infinite-minesweeper npm run test:sample:bug-layout",
"test:sample:bug-rendering:Zikoat-infinite-minesweeper": "APP_NAME=Zikoat-infinite-minesweeper npm run test:sample:bug-rendering",
"test:sample:bug-state:Zikoat-infinite-minesweeper": "APP_NAME=Zikoat-infinite-minesweeper npm run test:sample:bug-state",
"test:sample:bug-appearance:Zikoat-infinite-minesweeper": "APP_NAME=Zikoat-infinite-minesweeper npm run test:sample:bug-appearance",
"test:sample_all:Zikoat-infinite-minesweeper": "APP_NAME=Zikoat-infinite-minesweeper npm-run-all --serial \"test:sample:*:Zikoat-infinite-minesweeper\"",
"test:parse:clean:Zikoat-infinite-minesweeper": "APP_NAME=Zikoat-infinite-minesweeper npm run test:parse:clean",
"test:parse:bug-layout:Zikoat-infinite-minesweeper": "APP_NAME=Zikoat-infinite-minesweeper npm run test:parse:bug-layout",
"test:parse:bug-rendering:Zikoat-infinite-minesweeper": "APP_NAME=Zikoat-infinite-minesweeper npm run test:parse:bug-rendering",
"test:parse:bug-state:Zikoat-infinite-minesweeper": "APP_NAME=Zikoat-infinite-minesweeper npm run test:parse:bug-state",
"test:parse:bug-appearance:Zikoat-infinite-minesweeper": "APP_NAME=Zikoat-infinite-minesweeper npm run test:parse:bug-appearance",
"test:parse_all:Zikoat-infinite-minesweeper": "APP_NAME=Zikoat-infinite-minesweeper npm-run-all --serial \"test:parse:*:Zikoat-infinite-minesweeper\""
}
}