-
Notifications
You must be signed in to change notification settings - Fork 186
/
Copy pathpackage.json
58 lines (58 loc) · 1.52 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
{
"name": "pa11y-dashboard",
"version": "4.2.0",
"private": true,
"description": "Pa11y Dashboard is a visual web interface to the Pa11y accessibility reporter",
"keywords": [
"accessibility",
"analysis",
"report"
],
"author": "Team Pa11y",
"contributors": [
"Perry Harlock (http://www.phwebs.co.uk/)",
"Rowan Manning (http://rowanmanning.com/)"
],
"repository": {
"type": "git",
"url": "https://github.com/pa11y/pa11y-dashboard.git"
},
"homepage": "https://github.com/pa11y/pa11y-dashboard",
"bugs": "https://github.com/pa11y/pa11y-dashboard/issues",
"license": "GPL-3.0",
"engines": {
"node": ">=12"
},
"dependencies": {
"body-parser": "~1.19.2",
"compression": "~1.7.4",
"express": "~4.19.2",
"express-hbs": "~2.4.0",
"http-headers": "~3.0.2",
"kleur": "~4.1.4",
"lodash.groupby": "~4.6.0",
"lodash.keys": "~4.2.0",
"moment": "~2.29.4",
"morgan": "~1.10.0",
"nanoid": "~3.3.2",
"pa11y-webservice": "^4.3.1",
"pa11y-webservice-client-node": "~3.0.0"
},
"devDependencies": {
"bower": "^1.8.13",
"cheerio": "^1.0.0-rc.10",
"eslint": "^7.27.0",
"less": "^3.11.1",
"mocha": "^10.2.0",
"node-fetch": "^2.7.0",
"pa11y-lint-config": "^3.0.0",
"proclaim": "^3.6.0",
"uglify-js": "^3.11.0"
},
"scripts": {
"start": "node index.js",
"test": "npm run test:integration",
"test:integration": "mocha 'test/integration/**/*.js' --recursive --timeout 20000 --slow 4000",
"lint": "eslint ."
}
}