-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.11 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
{
"name": "wcag-pdf",
"version": "5.0.6",
"description": "Check the Accessibility of a PDF Document",
"license": "MIT",
"author": {
"name": "Geir Gåsodden",
"email": "geir.gasodden@pythonia.no",
"url": "https://github.com/zrrrzzt"
},
"bugs": {
"url": "https://github.com/zrrrzzt/node-wcag-pdf/issues"
},
"homepage": "https://github.com/zrrrzzt/node-wcag-pdf#readme",
"keywords": [
"pdf",
"wcag",
"validation",
"validator"
],
"main": "index.js",
"engines": {
"node": ">=14.19.2"
},
"scripts": {
"test": "standard && tap --reporter=spec test/*.js",
"coverage": "tap test/*.js --coverage",
"standard-fix": "standard --fix",
"refresh": "rm -rf node_modules && rm package-lock.json && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zrrrzzt/node-wcag-pdf.git"
},
"devDependencies": {
"standard": "17.0.0",
"tap": "16.3.0"
},
"dependencies": {
"axios": "0.27.2",
"cheerio": "1.0.0-rc.11",
"form-data": "4.0.0",
"valid-url": "1.0.9"
},
"tap": {
"check-coverage": false
}
}