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

88 lines
2.5 KiB
JSON
Raw Normal View History

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.",
"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",
2022-02-19 16:55:36 +01:00
"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\"",
2022-01-06 19:52:25 +01:00
"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",
2022-01-06 22:34:58 +01:00
"ora": "5.4.1",
"read-pkg": "5.2.0",
"table": "6.8.0"
2022-01-06 19:52:25 +01:00
},
"devDependencies": {
2022-02-19 16:55:36 +01:00
"@commitlint/cli": "16.2.1",
"@commitlint/config-conventional": "16.2.1",
2022-01-06 19:52:25 +01:00
"@swc/cli": "0.1.55",
"@swc/core": "1.2.144",
2022-02-19 16:55:36 +01:00
"@swc/jest": "0.2.17",
2022-01-06 22:34:58 +01:00
"@types/html-validator": "5.0.2",
"@types/jest": "27.4.1",
2022-01-06 22:34:58 +01:00
"@types/mock-fs": "4.13.1",
"@types/node": "17.0.21",
"@typescript-eslint/eslint-plugin": "5.12.1",
2022-01-06 19:52:25 +01:00
"editorconfig-checker": "4.0.2",
2022-02-19 16:55:36 +01:00
"eslint": "8.9.0",
"eslint-config-conventions": "1.1.0",
2022-02-19 16:55:36 +01:00
"eslint-config-prettier": "8.4.0",
2022-01-06 19:52:25 +01:00
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "4.0.0",
2022-02-19 16:55:36 +01:00
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-unicorn": "41.0.0",
2022-01-06 22:34:58 +01:00
"execa": "5.1.1",
2022-01-06 19:52:25 +01:00
"husky": "7.0.4",
2022-02-19 16:55:36 +01:00
"jest": "27.5.1",
2022-01-06 19:52:25 +01:00
"jest-mock-extended": "2.0.4",
"jest-ts-webcompat-resolver": "1.0.0",
2022-02-19 16:55:36 +01:00
"lint-staged": "12.3.4",
"markdownlint-cli": "0.31.1",
2022-01-06 22:34:58 +01:00
"mock-fs": "5.1.2",
"pinst": "3.0.0",
2022-01-06 19:52:25 +01:00
"prettier": "2.5.1",
"rimraf": "3.0.2",
2022-02-19 16:55:36 +01:00
"semantic-release": "19.0.2",
2022-01-06 22:34:58 +01:00
"serve": "13.0.2",
2022-02-19 16:55:36 +01:00
"typescript": "4.5.5"
2022-01-06 19:52:25 +01:00
}
}