-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 2.33 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
{
"$schema": "http://json.schemastore.org/package",
"private": true,
"name": "@siteimprove/alfa",
"homepage": "https://alfa.siteimprove.com",
"license": "MIT",
"description": "Suite of open and standards-based tools for performing reliable accessibility conformance testing at scale",
"repository": {
"type": "git",
"url": "github:Siteimprove/alfa"
},
"bugs": "https://github.com/siteimprove/alfa/issues",
"scripts": {
"build": "node --max-old-space-size=8192 scripts/build.mjs --pretty",
"clean": "node scripts/clean.mjs --pretty",
"test": "vitest run --config ./config/vitest.config.ts",
"#coverage:comment": "We use --coverage.enabled instead of --coverage to allow overriding options in the CLI. See warning at https://vitest.dev/config/#coverage",
"coverage": "vitest run --coverage.enabled --config ./config/vitest.config.ts",
"#coverage:package:comment": "Run coverage for a single package. Usage: yarn workspace @siteimprove/alfa-foo coverage:package. ALFA_PATH is used in vitest config.",
"coverage:package": "ALFA_PATH=$(echo ${INIT_CWD} | sed \"s+$(pwd)/++\") yarn coverage",
"watch": "node scripts/watch.mjs --pretty",
"extract": "node scripts/api-extractor.mjs --pretty",
"extract:self": "CI=false yarn extract ${INIT_CWD}",
"depgraph:self": "yarn generate-dependency-graphs $(pwd) $(echo ${INIT_CWD} | sed \"s+$(pwd)/packages/++\")",
"document": "api-documenter generate -i docs/data/api -o docs/api",
"knip": "knip --config config/knip.ts --no-config-hints",
"typedoc": "typedoc --options config/typedoc.mjs"
},
"engines": {
"node": ">=22.0.0"
},
"type": "module",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@changesets/cli": "^2.31.1",
"@microsoft/api-documenter": "^7.30.10",
"@microsoft/api-extractor": "^7.52.10",
"@siteimprove/alfa-toolchain": "workspace:^0.119.0",
"@types/node": "^26.1.2",
"@vitest/coverage-v8": "^4.1.10",
"knip": "^6.29.0",
"minimist": "^1.2.6",
"prettier": "^3.9.6",
"typedoc": "^0.28.20",
"typedoc-plugin-markdown": "^4.12.0",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
},
"comment-resolution": "Circumventing https://github.com/vitest-dev/vitest/issues/9876 until it is fixed upstream.",
"resolutions": {
"vite": "7.3.5"
},
"packageManager": "yarn@4.17.1"
}