1
1
mirror of https://github.com/theoludwig/html-w3c-validator.git synced 2024-07-20 07:30:11 +02:00
html-w3c-validator/package.json

97 lines
2.7 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": "swc ./src --out-dir ./build --strip-leading-paths --delete-dir-on-start",
"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",
"release": "semantic-release",
"postinstall": "husky"
},
"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.6.0",
"@commitlint/config-conventional": "18.6.0",
"@swc/cli": "0.3.5",
"@swc/core": "1.3.107",
"@tsconfig/strictest": "2.0.2",
"@types/html-validator": "5.0.6",
"@types/mock-fs": "4.13.4",
"@types/node": "20.11.10",
"@types/sinon": "17.0.3",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.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.3",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "50.0.1",
"execa": "8.0.1",
"husky": "9.0.7",
"lint-staged": "15.2.0",
"markdownlint-cli2": "0.12.1",
"markdownlint-rule-relative-links": "2.2.0",
"mock-fs": "5.2.0",
"pinst": "3.0.0",
"prettier": "3.2.4",
"rimraf": "5.0.5",
"semantic-release": "23.0.0",
"serve": "14.2.1",
"sinon": "17.0.1",
"typescript": "5.3.3"
}
}