-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
57 lines (57 loc) · 1.38 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
{
"name": "pa11y-webservice",
"version": "4.3.1",
"engines": {
"node": ">=18"
},
"description": "Pa11y Webservice provides scheduled accessibility reports for multiple URLs",
"keywords": [
"accessibility",
"analysis",
"report",
"web-service"
],
"author": "Team Pa11y",
"contributors": [
"Rowan Manning (http://rowanmanning.com/)"
],
"repository": {
"type": "git",
"url": "https://github.com/pa11y/pa11y-webservice.git"
},
"homepage": "https://github.com/pa11y/pa11y-webservice",
"bugs": "https://github.com/pa11y/pa11y-webservice/issues",
"license": "GPL-3.0",
"dependencies": {
"@hapi/hapi": "~21.3.2",
"async": "~3.2.4",
"cron": "~2.4.4",
"joi": "~17.11.0",
"kleur": "~4.1.5",
"lodash.groupby": "~4.6.0",
"mongodb": "~3.7.3",
"pa11y": "^8.0.0"
},
"devDependencies": {
"eslint": "^8.52.0",
"mocha": "^10.1.0",
"pa11y-lint-config": "^3.0.0",
"proclaim": "^3.6.0"
},
"main": "./app.js",
"scripts": {
"start": "node index.js",
"lint": "eslint .",
"load-fixtures": "node script/fixtures.js",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "mocha test/unit --exit --recursive",
"test:integration": "mocha test/integration --exit --timeout 20000 --slow 4000"
},
"files": [
"*.js",
"data",
"model",
"route",
"task"
]
}