2022-01-06 19:52:25 +01:00
|
|
|
{
|
|
|
|
"name": "html-w3c-validator",
|
|
|
|
"version": "0.0.0-development",
|
2022-02-19 16:55:36 +01:00
|
|
|
"public": true,
|
2022-01-06 19:52:25 +01:00
|
|
|
"description": "CLI for validating multiple html pages using validator.w3.org.",
|
2022-04-06 19:59:31 +02:00
|
|
|
"type": "module",
|
2022-01-06 19:52:25 +01:00
|
|
|
"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": {
|
2023-01-10 22:15:14 +01:00
|
|
|
"build": "rimraf ./build && swc ./src --out-dir ./build",
|
|
|
|
"build:typescript": "tsc",
|
2022-01-06 19:52:25 +01:00
|
|
|
"lint:commit": "commitlint",
|
|
|
|
"lint:editorconfig": "editorconfig-checker",
|
2023-01-10 22:15:14 +01:00
|
|
|
"lint:markdown": "markdownlint-cli2",
|
|
|
|
"lint:eslint": "eslint \"**/*.{js,jsx,ts,tsx}\" --ignore-path \".gitignore\"",
|
2022-02-19 16:55:36 +01:00
|
|
|
"lint:prettier": "prettier \".\" --check --ignore-path \".gitignore\"",
|
2022-01-06 19:52:25 +01:00
|
|
|
"lint:staged": "lint-staged",
|
2022-04-06 19:59:31 +02:00
|
|
|
"test": "tap",
|
2023-01-10 22:15:14 +01:00
|
|
|
"release": "semantic-release"
|
2022-01-06 19:52:25 +01:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-01-10 22:15:14 +01:00
|
|
|
"chalk": "5.2.0",
|
2022-01-06 19:52:25 +01:00
|
|
|
"clipanion": "3.1.0",
|
2022-10-20 23:30:41 +02:00
|
|
|
"html-validator": "6.0.1",
|
2022-10-20 23:46:36 +02:00
|
|
|
"log-symbols": "5.1.0",
|
2022-10-20 23:30:41 +02:00
|
|
|
"ora": "6.1.2",
|
2022-04-06 19:59:31 +02:00
|
|
|
"read-pkg": "7.1.0",
|
2023-01-10 22:15:14 +01:00
|
|
|
"table": "6.8.1"
|
2022-01-06 19:52:25 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-01-10 22:15:14 +01:00
|
|
|
"@commitlint/cli": "17.4.1",
|
|
|
|
"@commitlint/config-conventional": "17.4.0",
|
2022-04-06 19:59:31 +02:00
|
|
|
"@swc/cli": "0.1.57",
|
2023-01-10 22:15:14 +01:00
|
|
|
"@swc/core": "1.3.25",
|
|
|
|
"@tsconfig/strictest": "1.0.2",
|
2022-10-20 23:30:41 +02:00
|
|
|
"@types/html-validator": "5.0.3",
|
2022-01-06 22:34:58 +01:00
|
|
|
"@types/mock-fs": "4.13.1",
|
2023-01-10 22:15:14 +01:00
|
|
|
"@types/node": "18.11.18",
|
2022-10-20 23:30:41 +02:00
|
|
|
"@types/tap": "15.0.7",
|
2023-01-10 22:15:14 +01:00
|
|
|
"@typescript-eslint/eslint-plugin": "5.48.1",
|
2022-01-06 19:52:25 +01:00
|
|
|
"editorconfig-checker": "4.0.2",
|
2023-01-10 22:15:14 +01:00
|
|
|
"eslint": "8.31.0",
|
|
|
|
"eslint-config-conventions": "6.0.0",
|
|
|
|
"eslint-config-prettier": "8.6.0",
|
2022-04-06 19:59:31 +02:00
|
|
|
"eslint-plugin-import": "2.26.0",
|
2022-10-20 23:30:41 +02:00
|
|
|
"eslint-plugin-prettier": "4.2.1",
|
|
|
|
"eslint-plugin-promise": "6.1.1",
|
2023-01-10 22:15:14 +01:00
|
|
|
"eslint-plugin-unicorn": "45.0.2",
|
2022-04-06 19:59:31 +02:00
|
|
|
"execa": "6.1.0",
|
2023-01-10 22:15:14 +01:00
|
|
|
"lint-staged": "13.1.0",
|
|
|
|
"markdownlint-cli2": "0.6.0",
|
|
|
|
"markdownlint-rule-relative-links": "1.1.1",
|
|
|
|
"mock-fs": "5.2.0",
|
|
|
|
"prettier": "2.8.2",
|
2022-01-06 19:52:25 +01:00
|
|
|
"rimraf": "3.0.2",
|
2023-01-10 22:15:14 +01:00
|
|
|
"semantic-release": "20.0.2",
|
|
|
|
"serve": "14.1.2",
|
|
|
|
"tap": "16.3.3",
|
|
|
|
"typescript": "4.9.4"
|
2022-01-06 19:52:25 +01:00
|
|
|
}
|
|
|
|
}
|