site-validator-cli
Version:
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.
71 lines • 1.75 kB
JSON
{
"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.0",
"fast-xml-parser": "3.17.4",
"flat-cache": "2.0.1",
"html-validator": "^5.0.0",
"minimist": "1.2.5",
"normalize-url": "5.1.0",
"p-queue": "6.6.1",
"sanitize-filename": "^1.6.3",
"simplecrawler": "1.1.9"
},
"devDependencies": {
"async-retry": "1.3.1",
"ava": "3.12.1",
"coveralls": "3.1.0",
"nyc": "15.1.0",
"standard": "14.3.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"
]
}