-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 3.61 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 3.61 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
{
"name": "mathmaster-html",
"version": "1.0.0",
"description": "Educational math game with Matrix-themed UI where players solve algebra equations by clicking falling symbols",
"type": "module",
"scripts": {
"start": "http-server -p 8000 -c-1 --cors",
"lint": "eslint src/scripts lock src/tools/middle-screen",
"lint:fix": "eslint src/scripts lock src/tools/middle-screen --fix",
"verify": "node src/tools/scripts/verify.js",
"verify:quick": "npm run lint && echo '✅ Lint passed!'",
"typecheck": "npx tsc --noEmit --project tsconfig.typecheck.json",
"test": "npx playwright test",
"test:competition": "npm run test:competition:matrix",
"test:competition:smoke": "cross-env MM_TEST_SEED=competition-smoke npx playwright test --config=playwright.competition.config.js --project=qa-smoke-chromium --project=qa-smoke-pixel-7",
"test:competition:matrix": "cross-env MM_TEST_SEED=competition-matrix npx playwright test --config=playwright.competition.config.js --project=qa-matrix-chromium --project=qa-matrix-iphone-13 --project=qa-matrix-pixel-7",
"test:competition:soak": "cross-env MM_TEST_SEED=competition-soak npx playwright test --config=playwright.competition.config.js --project=qa-matrix-chromium --repeat-each=3 tests/gameplay-features.spec.js tests/powerups.spec.js",
"test:competition:soak:symbol-rain": "cross-env MM_TEST_SEED=competition-soak-symbol-rain npx playwright test --config=playwright.competition.config.js --project=qa-matrix-chromium --project=qa-soak-webkit --project=qa-soak-firefox tests/symbol-rain.live-targets.spec.js -g \"@soak\"",
"test:competition:stress": "cross-env MM_TEST_SEED=competition-stress npx playwright test --config=playwright.competition.config.js --project=qa-matrix-chromium --project=qa-matrix-pixel-7 tests/e2e-full-game-stress.spec.js",
"test:competition:full": "cross-env MM_TEST_SEED=competition-full npx playwright test --config=playwright.competition.config.js --project=qa-matrix-chromium --project=qa-matrix-iphone-13 --project=qa-matrix-pixel-7 tests/e2e-full-game-critical.spec.js tests/e2e-full-game-stress.spec.js",
"test:perf:gate": "npx playwright test --config=playwright.competition.config.js --project=qa-perf-smoke",
"test:ui": "npx playwright test --ui",
"test:headed": "npx playwright test --headed",
"test:report": "npx playwright show-report",
"test:manual": "echo 'Open http://localhost:8000/game.html?level=beginner and press P to view performance monitor'",
"test:split:list": "node tests/run-playwright-group.js --list",
"test:split:check": "node tests/run-playwright-group.js --check",
"test:split:boot": "node tests/run-playwright-group.js boot",
"test:split:ui": "node tests/run-playwright-group.js ui",
"test:split:gameplay": "node tests/run-playwright-group.js gameplay",
"test:split:evan": "node tests/run-playwright-group.js evan",
"test:split:drums": "node tests/run-playwright-group.js drums",
"test:split:e2e": "node tests/run-playwright-group.js e2e",
"test:split:perf": "node tests/run-playwright-group.js perf"
},
"keywords": [
"math",
"education",
"game",
"matrix",
"algebra"
],
"author": "TeacherEvan",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/TeacherEvan/MathMasterHTML"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.1",
"cross-env": "^10.1.0",
"eslint": "^10.9.1",
"globals": "^17.12.0",
"playwright": "^1.59.1",
"typescript": "^7.0.2"
},
"optionalDependencies": {
"http-server": "^14.1.1"
},
"engines": {
"node": "^24.0.0"
}
}