-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 944 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
{
"name": "web-auditor",
"version": "1.0.0",
"description": "A node web auditor for elasticMS",
"main": "src/audit.js",
"scripts": {
"lint": "eslint --fix src/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"elasticms",
"wcag",
"HTML",
"CodeSniffer"
],
"author": "Mathieu De Keyzer",
"license": "MIT",
"dependencies": {
"cli-progress": "^3.12.0",
"crawlee": "^3.11.1",
"dotenv": "^16.4.5",
"fs": "^0.0.1-security",
"js-yaml": "^4.1.0",
"moment": "^2.30.1",
"mustache": "^4.2.0",
"pa11y": "^8.0.0",
"path": "^0.12.7",
"puppeteer": "^22.14.0",
"requestretry": "^7.1.0",
"textract": "^2.5.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1"
}
}