UNPKG

w3c-html-validator

Version:

Check the markup validity of HTML files using the W3C validator

86 lines (85 loc) 2.25 kB
{ "name": "w3c-html-validator", "version": "1.8.2", "description": "Check the markup validity of HTML files using the W3C validator", "license": "MIT", "type": "module", "module": "dist/w3c-html-validator.js", "types": "dist/w3c-html-validator.d.ts", "exports": "./dist/w3c-html-validator.js", "files": [ "dist" ], "bin": { "html-validator": "bin/cli.js", "w3c-html-validator": "bin/cli.js" }, "repository": { "type": "git", "url": "git+https://github.com/center-key/w3c-html-validator.git" }, "homepage": "https://github.com/center-key/w3c-html-validator", "bugs": "https://github.com/center-key/w3c-html-validator/issues", "docs": "https://github.com/center-key/w3c-html-validator#readme", "author": "Thomas Davis <thomasalwyndavis@gmail.com>", "keywords": [ "html", "html5", "validator", "w3c" ], "jshintConfig": { "esversion": 11, "strict": "implied", "eqeqeq": true, "undef": true, "unused": true, "varstmt": true, "node": true, "mocha": true }, "runScriptsConfig": { "clean": [ "rimraf build dist" ], "lint": [ "jshint . --exclude-path .gitignore", "eslint --max-warnings 0" ], "build": [ "tsc", "add-dist-header build dist" ] }, "scripts": { "pretest": "run-scripts clean lint build", "test": "mocha spec/*.spec.js --timeout 7000", "examples": "node examples.js" }, "dependencies": { "chalk": "~5.3", "cli-argv-util": "~1.2", "fancy-log": "~2.0", "glob": "~11.0", "slash": "~5.1", "superagent": "~9.0" }, "devDependencies": { "@eslint/js": "~9.9", "@types/fancy-log": "~2.0", "@types/node": "~22.2", "@types/superagent": "~8.1", "add-dist-header": "~1.4", "assert-deep-strict-equal": "~1.2", "copy-file-util": "~1.2", "copy-folder-util": "~1.1", "eslint": "~9.9", "jshint": "~2.13", "merge-stream": "~2.0", "mocha": "~10.7", "rimraf": "~6.0", "run-scripts-util": "~1.3", "typescript": "~5.5", "typescript-eslint": "~8.0" } }