-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
31 lines (31 loc) · 1.23 KB
/
Copy pathdeno.json
File metadata and controls
31 lines (31 loc) · 1.23 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
{
"name": "educoder-lab-runner",
"exports": "./src/educoder.ts",
"tasks": {
"start": "PLAYWRIGHT_BROWSERS_PATH=0 deno run -A src/main.ts",
"extract:questions": "deno run --allow-read=questions_all.md --allow-write=data/questions.json scripts/extract-questions.ts",
"test": "PLAYWRIGHT_BROWSERS_PATH=0 deno run -A npm:@playwright/test test",
"test:headed": "PLAYWRIGHT_BROWSERS_PATH=0 deno run -A npm:@playwright/test test --headed",
"test:ui": "PLAYWRIGHT_BROWSERS_PATH=0 deno run -A npm:@playwright/test test --ui",
"report": "PLAYWRIGHT_BROWSERS_PATH=0 deno run -A npm:@playwright/test show-report",
"codegen": "PLAYWRIGHT_BROWSERS_PATH=0 deno run -A npm:@playwright/test codegen -b firefox --target=playwright-test",
"install:browsers": "deno task install:firefox && deno task install:chromium",
"install:firefox": "PLAYWRIGHT_BROWSERS_PATH=0 deno run -A npm:@playwright/test install firefox",
"install:chromium": "deno run -A scripts/install-chromium.ts"
},
"fmt": {
"exclude": [
"node_modules",
"playwright-report",
"test-results"
]
},
"lint": {
"exclude": [
"node_modules",
"playwright-report",
"test-results"
]
},
"nodeModulesDir": "auto"
}