-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.72 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
{
"name": "linuxpath",
"version": "0.0.0",
"private": true,
"packageManager": "npm@11.19.0",
"description": "Reproducible validation harness for the LinuxPath static learning application.",
"type": "module",
"engines": {
"node": "24.20.0",
"npm": "11.19.0"
},
"toolchain": {
"python": "3.13.5",
"uv": "0.11.6"
},
"scripts": {
"clean": "node scripts/clean.mjs",
"check:toolchain": "node scripts/check-toolchain.mjs",
"validate:syntax": "node scripts/check-syntax.mjs",
"validate:html": "html-validate index.html",
"validate:data": "node scripts/validate-content.mjs",
"validate:references": "node scripts/check-references.mjs",
"generate:assets": "node scripts/generate-assets.mjs",
"generate:readme": "node scripts/sync-readme.mjs",
"check:generated-assets": "node scripts/check-generated-assets.mjs",
"build": "node scripts/build.mjs",
"test:unit": "node --test tests/unit/*.test.mjs",
"test:python": "node scripts/run-python-tests.mjs",
"lint:python": "uvx --from ruff==0.16.5 ruff check .github/scripts/fetch_news.py tests/python",
"install:browsers": "playwright install chromium",
"test:e2e": "node scripts/run-playwright.mjs source",
"test:e2e:dist": "node scripts/run-playwright.mjs dist",
"test:e2e:offline": "node scripts/run-playwright.mjs offline",
"test:e2e:list": "node scripts/run-playwright.mjs source --list",
"verify:harness": "node scripts/run-suite.mjs harness",
"verify:static": "node scripts/run-suite.mjs static",
"verify": "node scripts/run-suite.mjs all"
},
"devDependencies": {
"@axe-core/playwright": "4.13.0",
"@playwright/test": "1.62.0",
"html-validate": "10.11.0",
"terser": "5.51.2"
}
}