-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1 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
{
"name": "aplusstudyapp",
"version": "1.0.0",
"private": true,
"description": "Offline-first study PWA — aim for an A+ on any certification exam. Ships with a CompTIA A+ Core 2 (220-1202) question bank. Vanilla JS, zero runtime deps.",
"author": "Amanda Kondrat'yev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/manderwall/aplusstudyapp.git"
},
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"test": "node --test tests/*.test.mjs",
"validate": "node scripts/validate-questions.mjs data/core2/questions.json",
"check": "node --check app.js && node --check lib.mjs && node --check crypto.mjs && node --check sw.js",
"serve": "python3 -m http.server 8000",
"smoke": "node tests/smoke/regression.mjs",
"smoke:perf": "node tests/smoke/perf.mjs",
"smoke:mobile": "node tests/smoke/mobile.mjs",
"smoke:cross-device": "node tests/smoke/cross-device.mjs"
},
"devDependencies": {
"puppeteer": "^25.3.0"
}
}