-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
42 lines (42 loc) · 989 Bytes
/
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
{
"name": "pa11y-webservice-client-node",
"version": "4.0.0",
"engines": {
"node": ">=18"
},
"description": "A Node.js client library for Pa11y Webservice",
"keywords": [
"accessibility",
"analysis",
"client",
"report",
"web-service"
],
"author": "Team Pa11y",
"contributors": [
"Rowan Manning (http://rowanmanning.com/)"
],
"repository": "github:pa11y/pa11y-webservice-client-node",
"homepage": "https://github.com/pa11y/pa11y-webservice-client-node",
"bugs": "https://github.com/pa11y/pa11y-webservice-client-node/issues",
"license": "LGPL-3.0-only",
"dependencies": {
"request": "~2.88.2"
},
"devDependencies": {
"eslint": "^8.53.0",
"mocha": "^10.2.0",
"mockery": "^2.1.0",
"pa11y-lint-config": "^3.0.0",
"proclaim": "^3.6.0",
"sinon": "^17.0.1"
},
"main": "./lib/client.js",
"scripts": {
"test": "mocha test/unit --recursive",
"lint": "eslint ."
},
"files": [
"lib"
]
}