forked from pa11y/pa11y-webservice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.14 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
{
"name": "pa11y-webservice",
"version": "4.0.0",
"engines": {
"node": ">=12 <16"
},
"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/webservice.git"
},
"homepage": "https://github.com/pa11y/webservice",
"bugs": "https://github.com/pa11y/webservice/issues",
"license": "GPL-3.0",
"dependencies": {
"@hapi/hapi": "~18.4.1",
"async": "~3.2.2",
"cron": "~1.8.2",
"joi": "~17.4.2",
"kleur": "~4.1.2",
"mongodb": "~3.6.10",
"pa11y": "~6.1.0",
"underscore": "~1.13.1"
},
"devDependencies": {
"eslint": "^7.27.0",
"mocha": "^8.4.0",
"pa11y-lint-config": "^2.0.0",
"proclaim": "^3.6.0",
"request": "^2.88.2"
},
"main": "./app.js",
"scripts": {
"start": "node index.js",
"test": "make ci"
},
"files": [
"*.js",
"data",
"model",
"route",
"task"
]
}