This repository has been archived by the owner on Apr 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 1.71 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "site-validator-cli",
"version": "1.3.5",
"description": "A command line tool that takes a URL or a file, then uses html-validator (a wrapper for https://validator.w3.org/nu/) to validate each page.",
"main": "index.js",
"directories": {
"lib": "lib"
},
"bin": {
"site-validator": "index.js"
},
"engines": {
"node": ">=8.15.0"
},
"dependencies": {
"cli-color": "2.0.2",
"fast-xml-parser": "4.0.7",
"flat-cache": "3.0.4",
"html-validator": "^6.0.0",
"minimist": "1.2.6",
"normalize-url": "7.0.3",
"p-queue": "7.2.0",
"sanitize-filename": "^1.6.3",
"simplecrawler": "1.1.9"
},
"devDependencies": {
"async-retry": "1.3.3",
"ava": "4.2.0",
"coveralls": "3.1.1",
"nyc": "15.1.0",
"standard": "16.0.4"
},
"scripts": {
"test": "standard && npm audit && ava",
"test-offline": "standard && ava",
"standard-fix": "standard --fix",
"coverage": "nyc ava",
"coveralls": "nyc ava && nyc report --reporter=lcov && cat coverage/lcov.info | coveralls"
},
"keywords": [
"site-validator",
"html-validator",
"validation",
"cli"
],
"author": {
"name": "Pokuan Ho",
"email": "hopokuan@umich.edu",
"url": "https://github.com/p1ho"
},
"contributors": [
{
"name": "Geir Gåsodden",
"email": "geir.gasodden@pythonia.no",
"url": "https://github.com/zrrrzzt"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/p1ho/site-validator-cli.git"
},
"bugs": {
"url": "https://github.com/p1ho/site-validator-cli/issues"
},
"homepage": "https://github.com/p1ho/site-validator-cli#readme",
"files": [
"lib/*",
"index.js"
]
}