-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.14 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
{
"name": "scroll-a11y-audit",
"version": "0.1.0",
"private": true,
"description": "Accessibility auditor for scroll-driven and view-transition animations — a browser bookmarklet and a headless-Chrome CLI sharing one rule engine.",
"type": "module",
"license": "MIT",
"author": "css-scroll-driven",
"engines": {
"node": ">=20"
},
"bin": {
"scroll-a11y-audit": "./bin/scroll-a11y-audit.mjs"
},
"exports": {
".": "./src/engine.js",
"./rules": "./src/rules/index.js",
"./reporters": "./src/reporters/index.js"
},
"files": [
"bin",
"src",
"browser",
"scripts"
],
"scripts": {
"test": "node --test \"tests/**/*.test.mjs\"",
"build:browser": "node scripts/build-browser.mjs",
"audit:demo": "node bin/scroll-a11y-audit.mjs --url http://localhost:8000/demo/bad.html --url http://localhost:8000/demo/good.html",
"demo:serve": "python3 -m http.server 8000"
},
"keywords": [
"accessibility",
"a11y",
"scroll-driven-animations",
"view-transitions",
"prefers-reduced-motion",
"wcag",
"vestibular"
],
"dependencies": {
"puppeteer-core": "^23.0.0"
}
}