-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
63 lines (63 loc) · 1.81 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
{
"name": "pa11y-ci",
"version": "3.1.0",
"description": "Pa11y CI is a CI-centric accessibility test runner, built using Pa11y",
"keywords": [
"accessibility",
"analysis",
"cli",
"report"
],
"author": "Team Pa11y",
"contributors": [
"Rowan Manning (https://rowanmanning.com/)"
],
"repository": {
"type": "git",
"url": "https://github.com/pa11y/pa11y-ci.git"
},
"homepage": "https://github.com/pa11y/pa11y-ci",
"bugs": "https://github.com/pa11y/pa11y-ci/issues",
"license": "LGPL-3.0-only",
"engines": {
"node": ">=18"
},
"dependencies": {
"async": "~3.2.5",
"cheerio": "~1.0.0-rc.12",
"commander": "~11.1.0",
"globby": "~6.1.0",
"kleur": "~4.1.5",
"lodash": "~4.17.21",
"node-fetch": "~2.7.0",
"pa11y": "^7.0.0",
"protocolify": "~3.0.0",
"puppeteer": "^20.9.0",
"wordwrap": "~1.0.0"
},
"devDependencies": {
"eslint": "^8.56.0",
"mocha": "^10.3.0",
"mockery": "^2.1.0",
"nyc": "^15.1.0",
"pa11y-lint-config": "^3.0.0",
"proclaim": "^3.6.0",
"sinon": "^17.0.1"
},
"main": "./lib/pa11y-ci.js",
"bin": {
"pa11y-ci": "./bin/pa11y-ci.js"
},
"scripts": {
"lint": "eslint .",
"verify-coverage": "nyc check-coverage --lines 90 --functions 90 --branches 90",
"test-unit": "mocha --file test/unit/setup.test.js 'test/unit/**/*.test.js' --recursive",
"test-coverage": "nyc --reporter=text --reporter=html mocha --file test/unit/setup.test.js 'test/unit/**/*.test.js' --recursive",
"test-integration": "mocha --file test/integration/setup.test.js 'test/integration/**/*.test.js' test/integration/teardown.test.js --recursive --timeout 20000 --slow 5000",
"test": "npm run test-coverage && npm run verify-coverage && npm run test-integration"
},
"files": [
"bin",
"lib"
]
}