-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 954 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 954 Bytes
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
{
"name": "axe-live",
"type": "module",
"version": "1.0.1",
"description": "Highlight and summarize accessibility errors in running webappps",
"browser": "dist/axe-live.js",
"types": "dist/axe-live.d.ts",
"scripts": {
"build": "rollup -c",
"start": "rollup -w -c",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"axe",
"a11y",
"accessibility"
],
"author": "Matt Cheely",
"repository": "https://github.com/MattCheely/axe-live.git",
"license": "Apache-2.0",
"dependencies": {
"axe-core": "^4.2.2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.2",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"elm": "^0.19.1-5",
"rollup": "^2.51.2",
"rollup-plugin-elm": "^3.0.0",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
},
"browserslist": [
"defaults"
]
}