mirror of
https://github.com/theoludwig/html-w3c-validator.git
synced 2024-10-29 22:17:28 +01:00
94 lines
2.6 KiB
JSON
94 lines
2.6 KiB
JSON
{
|
|
"name": "html-w3c-validator",
|
|
"version": "0.0.0-development",
|
|
"description": "CLI for validating multiple html pages using validator.w3.org.",
|
|
"public": true,
|
|
"types": "module",
|
|
"type": "module",
|
|
"author": "Théo LUDWIG <contact@theoludwig.fr>",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/theoludwig/html-w3c-validator.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/theoludwig/html-w3c-validator/issues"
|
|
},
|
|
"homepage": "https://github.com/theoludwig/html-w3c-validator#readme",
|
|
"keywords": [
|
|
"cli",
|
|
"html-validator",
|
|
"w3c",
|
|
"validator.w3.org"
|
|
],
|
|
"main": "build/index.js",
|
|
"bin": "build/index.js",
|
|
"files": [
|
|
"build",
|
|
"!**/*.test.js",
|
|
"!**/*.map"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"provenance": true
|
|
},
|
|
"engines": {
|
|
"node": ">=16.0.0",
|
|
"npm": ">=9.0.0"
|
|
},
|
|
"scripts": {
|
|
"build": "rimraf ./build && swc ./src --out-dir ./build",
|
|
"build:typescript": "tsc",
|
|
"start": "node --enable-source-maps build/index.js",
|
|
"lint:commit": "commitlint",
|
|
"lint:editorconfig": "editorconfig-checker",
|
|
"lint:markdown": "markdownlint-cli2",
|
|
"lint:eslint": "eslint . --max-warnings 0 --report-unused-disable-directives --ignore-path .gitignore",
|
|
"lint:prettier": "prettier . --check",
|
|
"lint:staged": "lint-staged",
|
|
"test": "node --enable-source-maps --test build/",
|
|
"release": "semantic-release"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "5.3.0",
|
|
"clipanion": "3.2.1",
|
|
"html-validator": "6.0.1",
|
|
"log-symbols": "6.0.0",
|
|
"ora": "8.0.1",
|
|
"read-pkg": "9.0.1",
|
|
"table": "6.8.1"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "18.4.3",
|
|
"@commitlint/config-conventional": "18.4.3",
|
|
"@swc/cli": "0.1.63",
|
|
"@swc/core": "1.3.101",
|
|
"@tsconfig/strictest": "2.0.2",
|
|
"@types/html-validator": "5.0.6",
|
|
"@types/mock-fs": "4.13.4",
|
|
"@types/node": "20.10.5",
|
|
"@types/sinon": "17.0.2",
|
|
"@typescript-eslint/eslint-plugin": "6.16.0",
|
|
"@typescript-eslint/parser": "6.16.0",
|
|
"editorconfig-checker": "5.1.2",
|
|
"eslint": "8.56.0",
|
|
"eslint-config-conventions": "13.1.0",
|
|
"eslint-config-prettier": "9.1.0",
|
|
"eslint-plugin-import": "2.29.1",
|
|
"eslint-plugin-prettier": "5.1.2",
|
|
"eslint-plugin-promise": "6.1.1",
|
|
"eslint-plugin-unicorn": "50.0.1",
|
|
"execa": "8.0.1",
|
|
"lint-staged": "15.2.0",
|
|
"markdownlint-cli2": "0.11.0",
|
|
"markdownlint-rule-relative-links": "2.1.2",
|
|
"mock-fs": "5.2.0",
|
|
"prettier": "3.1.1",
|
|
"rimraf": "5.0.5",
|
|
"semantic-release": "22.0.12",
|
|
"serve": "14.2.1",
|
|
"sinon": "17.0.1",
|
|
"typescript": "5.3.3"
|
|
}
|
|
}
|