forked from pa11y/pa11y-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.93 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
{
"name": "@aarongoldenthal/pa11y-ci",
"version": "4.3.3",
"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/)",
"Aaron Goldenthal (https://github.com/aarongoldenthal)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/aarongoldenthal/pa11y-ci.git"
},
"homepage": "https://github.com/aarongoldenthal/pa11y-ci",
"bugs": "https://github.com/aarongoldenthal/pa11y-ci/issues",
"license": "LGPL-3.0-only",
"engines": {
"node": ">=18"
},
"dependencies": {
"@aarongoldenthal/pa11y": "^8.4.3",
"async": "^3.2.6",
"cheerio": "^1.0.0",
"commander": "^12.1.0",
"globby": "^6.1.0",
"kleur": "^4.1.5",
"lodash": "^4.17.21",
"node-fetch": "^2.7.0",
"protocolify": "^3.0.0",
"puppeteer": "^23.10.4",
"wordwrap": "^1.0.0"
},
"devDependencies": {
"eslint": "^8.57.1",
"mocha": "^11.0.1",
"mockery": "^2.1.0",
"nyc": "^17.1.0",
"pa11y-lint-config": "^3.0.0",
"proclaim": "^3.6.0",
"sinon": "^19.0.2"
},
"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 30000 --jobs 1",
"test": "npm run test-coverage && npm run verify-coverage && npm run test-integration"
},
"files": [
"bin",
"lib"
]
}