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.4 KiB
JSON
Raw Normal View History

2022-01-06 19:52:25 +01:00
{
"name": "html-w3c-validator",
"version": "0.0.0-development",
2024-02-02 15:44:03 +01:00
"description": "CLI for validating HTML pages using validator.w3.org.",
2023-12-26 22:43:05 +01:00
"public": true,
"types": "module",
"type": "module",
2023-07-02 12:22:39 +02:00
"author": "Théo LUDWIG <contact@theoludwig.fr>",
2022-01-06 19:52:25 +01:00
"license": "MIT",
"repository": {
"type": "git",
2023-07-02 12:22:39 +02:00
"url": "https://github.com/theoludwig/html-w3c-validator.git"
2022-01-06 19:52:25 +01:00
},
"bugs": {
2023-07-02 12:22:39 +02:00
"url": "https://github.com/theoludwig/html-w3c-validator/issues"
2022-01-06 19:52:25 +01:00
},
2023-07-02 12:22:39 +02:00
"homepage": "https://github.com/theoludwig/html-w3c-validator#readme",
2022-01-06 19:52:25 +01:00
"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
},
2022-01-06 19:52:25 +01:00
"engines": {
2024-05-23 21:21:34 +02:00
"node": ">=16.0.0"
2022-01-06 19:52:25 +01:00
},
"scripts": {
2024-01-30 01:16:56 +01:00
"build": "swc ./src --out-dir ./build --strip-leading-paths --delete-dir-on-start",
2023-01-10 22:15:14 +01:00
"build:typescript": "tsc",
"start": "node --enable-source-maps build/index.js",
2022-01-06 19:52:25 +01:00
"lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker",
2023-07-18 23:17:31 +02:00
"lint:eslint": "eslint . --max-warnings 0 --report-unused-disable-directives --ignore-path .gitignore",
2023-08-09 15:01:28 +02:00
"lint:prettier": "prettier . --check",
2022-01-06 19:52:25 +01:00
"lint:staged": "lint-staged",
2024-01-30 01:16:56 +01:00
"test": "node --enable-source-maps --test",
"release": "semantic-release",
2024-02-02 17:10:44 +01:00
"postinstall": "husky",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
2022-01-06 19:52:25 +01:00
},
"dependencies": {
2023-07-02 12:19:45 +02:00
"chalk": "5.3.0",
"clipanion": "3.2.1",
"log-symbols": "6.0.0",
2023-12-26 22:43:05 +01:00
"ora": "8.0.1",
"read-pkg": "9.0.1",
2024-05-23 21:21:34 +02:00
"table": "6.8.2"
2022-01-06 19:52:25 +01:00
},
"devDependencies": {
2024-05-23 21:21:34 +02:00
"@commitlint/cli": "19.2.2",
"@commitlint/config-conventional": "19.2.2",
"@swc/cli": "0.3.12",
"@swc/core": "1.5.7",
"@tsconfig/strictest": "2.0.5",
"@types/node": "20.12.12",
2024-01-30 01:16:56 +01:00
"@types/sinon": "17.0.3",
2024-05-23 21:21:34 +02:00
"@typescript-eslint/eslint-plugin": "7.10.0",
"@typescript-eslint/parser": "7.10.0",
"editorconfig-checker": "5.1.5",
"eslint": "8.57.0",
"eslint-config-conventions": "14.2.0",
2023-12-26 22:43:05 +01:00
"eslint-plugin-import": "2.29.1",
"eslint-plugin-promise": "6.1.1",
2024-05-23 21:21:34 +02:00
"eslint-plugin-unicorn": "53.0.0",
"execa": "9.1.0",
"husky": "9.0.11",
"lint-staged": "15.2.4",
2024-01-30 01:16:56 +01:00
"pinst": "3.0.0",
2024-05-23 21:21:34 +02:00
"prettier": "3.2.5",
"semantic-release": "23.1.1",
"serve": "14.2.3",
"sinon": "18.0.0",
"typescript": "5.4.5"
2022-01-06 19:52:25 +01:00
}
}