forked from p1ho/site-validator-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.88 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.88 KB
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
72
73
74
75
{
"name": "site-validator-cli",
"version": "1.3.9",
"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": {
"amphtml-validator": "^1.0.34",
"cli-color": "2.0.0",
"fast-xml-parser": "3.17.4",
"flat-cache": "3.0.4",
"html-validator": "^5.0.0",
"isomorphic-unfetch": "^3.1.0",
"minimist": "1.2.5",
"normalize-url": "5.3.0",
"p-queue": "6.6.1",
"sanitize-filename": "^1.6.3",
"simplecrawler": "1.1.9",
"structured-data-testing-tool": "^4.5.0"
},
"devDependencies": {
"async-retry": "1.3.1",
"ava": "3.15.0",
"coveralls": "3.1.0",
"nyc": "15.1.0",
"standard": "14.3.4"
},
"scripts": {
"test-run": "export BASE_URL=https://guidetoiceland.is && node ./index.js ./test.config.json --local --verbose --ignoreError=\"Bad value “Accept-CH” for attribute “http-equiv” on element “meta”.\" --ignoreError=\"CSS: “font-variation-settings”: Property “font-variation-settings” doesn't exist.\" --ignoreError=\"CSS: “unicode-range”: Too many values or values are not recognized.\" --ignoreError=\"Attribute “imagesrcset” not allowed on element “link” at this point.\" --ignoreError=\"Attribute “imagesizes” not allowed on element “link” at this point.\" --ignoreError=\"Element “link” is missing one or more of the following attributes: “href”, “resource”.\" --ignoreError=\"CSS: “contain-intrinsic-size”: Property “contain-intrinsic-size” doesn't exist.\" --ignoreError=\"CSS: “overflow-clip-margin”: Property “overflow-clip-margin” doesn't exist.\" --ignoreError=\"Attribute “.” not allowed on element “iframe” at this point.\" --quiet --baseUrl=\"${BASE_URL}\" --ampFile=ampTest.config.json",
"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"
]
}