forked from pa11y/pa11y
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.25 KB
/
package.json
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "pa11y",
"version": "8.0.0",
"description": "Pa11y is your automated accessibility testing pal",
"keywords": [
"accessibility",
"analysis",
"cli",
"report"
],
"author": "Team Pa11y",
"contributors": [
"Rowan Manning (http://rowanmanning.com/)",
"Whymarrh Whitby (http://whymarrh.com/)",
"Stephen Mathieson (http://www.stephenmathieson.com/)",
"Alex Soble (http://www.alexsoble.com/)",
"Charlie Brown (http://www.carbonatethis.com/)",
"Hollie Kay (http://www.hollsk.co.uk/)",
"Adam Tavener (http://www.tavvy.co.uk/)",
"Glynn Phillips (http://www.glynnphillips.co.uk/)",
"José Bolos (https://github.com/josebolos)",
"Joey Ciechanowicz (https://github.com/joeyciechanowicz)"
],
"repository": {
"type": "git",
"url": "https://github.com/pa11y/pa11y.git"
},
"homepage": "https://github.com/pa11y/pa11y",
"bugs": "https://github.com/pa11y/pa11y/issues",
"license": "LGPL-3.0-only",
"engines": {
"node": ">=18"
},
"dependencies": {
"axe-core": "~4.8.4",
"bfj": "~8.0.0",
"commander": "~12.0.0",
"envinfo": "~7.11.1",
"html_codesniffer": "github:openfed/AccessibilityCheck",
"kleur": "~4.1.5",
"mustache": "~4.2.0",
"node.extend": "~2.0.3",
"puppeteer": "^22.3.0",
"semver": "~7.6.0"
},
"devDependencies": {
"c8": "^9.1.0",
"eslint": "^8.57.0",
"eslint-plugin-mocha": "^10.4.1",
"mocha": "^10.3.0",
"mockery": "^2.1.0",
"pa11y": "^8.0.0",
"pa11y-lint-config": "^3.0.0",
"proclaim": "^3.6.0",
"sinon": "^17.0.1"
},
"overrides": {
"pa11y": {
"html_codesniffer": "github:openfed/AccessibilityCheck"
}
},
"main": "./lib/pa11y.js",
"bin": {
"pa11y": "./bin/pa11y.js"
},
"scripts": {
"lint": "eslint .",
"test": "npm run test-coverage && npm run verify-coverage && npm run test-integration",
"test-coverage": "c8 -- npm run test-unit",
"test-integration": "mocha --config test/integration/.mocharc.json",
"test-unit": "mocha",
"verify-coverage": "c8 check-coverage --lines 90 --functions 90 --branches 90",
"check": "node scripts/check.js",
"bundle": "node scripts/bundle.js",
"overview": "node scripts/overview.js"
},
"files": [
"bin",
"lib"
]
}