mirror of
https://github.com/theoludwig/html-w3c-validator.git
synced 2024-10-29 22:17:28 +01:00
81 lines
2.3 KiB
JSON
81 lines
2.3 KiB
JSON
{
|
|
"name": "html-w3c-validator",
|
|
"version": "0.0.0-development",
|
|
"description": "CLI for validating multiple html pages using validator.w3.org.",
|
|
"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",
|
|
"dev": "swc ./src --out-dir ./build --watch",
|
|
"lint:commit": "commitlint",
|
|
"lint:editorconfig": "editorconfig-checker",
|
|
"lint:markdown": "markdownlint '**/*.md' --dot --ignore node_modules",
|
|
"lint:typescript": "eslint '**/*.{js,ts,jsx,tsx}'",
|
|
"lint:prettier": "prettier '.' --check",
|
|
"lint:staged": "lint-staged",
|
|
"test": "jest",
|
|
"release": "semantic-release",
|
|
"postinstall": "husky install",
|
|
"prepublishOnly": "pinst --disable",
|
|
"postpublish": "pinst --enable"
|
|
},
|
|
"dependencies": {
|
|
"chalk": "4.1.2",
|
|
"clipanion": "3.1.0",
|
|
"html-validator": "6.0.0",
|
|
"read-pkg": "5.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "16.0.1",
|
|
"@commitlint/config-conventional": "16.0.0",
|
|
"@swc/cli": "0.1.55",
|
|
"@swc/core": "1.2.127",
|
|
"@swc/jest": "0.2.15",
|
|
"@types/jest": "27.4.0",
|
|
"@types/node": "17.0.8",
|
|
"editorconfig-checker": "4.0.2",
|
|
"eslint": "7.32.0",
|
|
"eslint-config-prettier": "8.3.0",
|
|
"eslint-config-standard-with-typescript": "21.0.1",
|
|
"eslint-plugin-import": "2.25.4",
|
|
"eslint-plugin-node": "11.1.0",
|
|
"eslint-plugin-prettier": "4.0.0",
|
|
"eslint-plugin-promise": "5.1.1",
|
|
"eslint-plugin-unicorn": "40.0.0",
|
|
"husky": "7.0.4",
|
|
"jest": "27.4.7",
|
|
"jest-mock-extended": "2.0.4",
|
|
"jest-ts-webcompat-resolver": "1.0.0",
|
|
"lint-staged": "12.1.5",
|
|
"markdownlint-cli": "0.30.0",
|
|
"pinst": "2.1.6",
|
|
"prettier": "2.5.1",
|
|
"rimraf": "3.0.2",
|
|
"semantic-release": "18.0.1",
|
|
"typescript": "4.5.4"
|
|
}
|
|
}
|