mirror of
https://github.com/theoludwig/html-w3c-validator.git
synced 2024-10-29 22:17:28 +01:00
6ca7722fcf
fixes #3
87 lines
2.4 KiB
JSON
87 lines
2.4 KiB
JSON
{
|
|
"name": "html-w3c-validator",
|
|
"version": "0.0.0-development",
|
|
"public": true,
|
|
"description": "CLI for validating multiple html pages using validator.w3.org.",
|
|
"type": "module",
|
|
"author": "Divlo <contact@divlo.fr>",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Divlo/html-w3c-validator.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Divlo/html-w3c-validator/issues"
|
|
},
|
|
"homepage": "https://github.com/Divlo/html-w3c-validator#readme",
|
|
"keywords": [
|
|
"cli",
|
|
"html-validator",
|
|
"w3c",
|
|
"validator.w3.org"
|
|
],
|
|
"main": "build/index.js",
|
|
"bin": "build/index.js",
|
|
"engines": {
|
|
"node": ">=16.0.0",
|
|
"npm": ">=8.0.0"
|
|
},
|
|
"files": [
|
|
"build"
|
|
],
|
|
"scripts": {
|
|
"build": "rimraf ./build && swc ./src --out-dir ./build && tsc",
|
|
"lint:commit": "commitlint",
|
|
"lint:editorconfig": "editorconfig-checker",
|
|
"lint:markdown": "markdownlint \"**/*.md\" --dot --ignore-path \".gitignore\"",
|
|
"lint:typescript": "eslint \"**/*.{js,jsx,ts,tsx}\" --ignore-path \".gitignore\"",
|
|
"lint:prettier": "prettier \".\" --check --ignore-path \".gitignore\"",
|
|
"lint:staged": "lint-staged",
|
|
"test": "tap",
|
|
"release": "semantic-release",
|
|
"postinstall": "husky install",
|
|
"prepublishOnly": "pinst --disable",
|
|
"postpublish": "pinst --enable"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "5.1.2",
|
|
"clipanion": "3.1.0",
|
|
"html-validator": "6.0.1",
|
|
"log-symbols": "5.1.0",
|
|
"ora": "6.1.2",
|
|
"read-pkg": "7.1.0",
|
|
"table": "6.8.0"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "17.1.2",
|
|
"@commitlint/config-conventional": "17.1.0",
|
|
"@swc/cli": "0.1.57",
|
|
"@swc/core": "1.3.9",
|
|
"@types/html-validator": "5.0.3",
|
|
"@types/mock-fs": "4.13.1",
|
|
"@types/node": "18.11.3",
|
|
"@types/tap": "15.0.7",
|
|
"@typescript-eslint/eslint-plugin": "5.40.1",
|
|
"editorconfig-checker": "4.0.2",
|
|
"eslint": "8.25.0",
|
|
"eslint-config-conventions": "5.0.0",
|
|
"eslint-config-prettier": "8.5.0",
|
|
"eslint-plugin-import": "2.26.0",
|
|
"eslint-plugin-prettier": "4.2.1",
|
|
"eslint-plugin-promise": "6.1.1",
|
|
"eslint-plugin-unicorn": "44.0.2",
|
|
"execa": "6.1.0",
|
|
"husky": "8.0.1",
|
|
"lint-staged": "13.0.3",
|
|
"markdownlint-cli": "0.32.2",
|
|
"mock-fs": "5.1.4",
|
|
"pinst": "3.0.0",
|
|
"prettier": "2.7.1",
|
|
"rimraf": "3.0.2",
|
|
"semantic-release": "19.0.5",
|
|
"serve": "14.0.1",
|
|
"tap": "16.3.0",
|
|
"typescript": "4.8.4"
|
|
}
|
|
}
|