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

93 lines
2.6 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.",
"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": {
"node": ">=16.0.0",
2023-05-13 16:19:21 +02:00
"npm": ">=9.0.0"
2022-01-06 19:52:25 +01:00
},
"scripts": {
2023-01-10 22:15:14 +01:00
"build": "rimraf ./build && swc ./src --out-dir ./build",
"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-01-10 22:15:14 +01:00
"lint:markdown": "markdownlint-cli2",
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",
"test": "node --enable-source-maps --test build/",
2023-01-10 22:15:14 +01:00
"release": "semantic-release"
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",
"html-validator": "6.0.1",
"log-symbols": "6.0.0",
2023-08-09 15:01:28 +02:00
"ora": "7.0.1",
"read-pkg": "8.1.0",
2023-01-10 22:15:14 +01:00
"table": "6.8.1"
2022-01-06 19:52:25 +01:00
},
"devDependencies": {
"@commitlint/cli": "18.0.0",
"@commitlint/config-conventional": "18.0.0",
2023-04-02 21:27:42 +02:00
"@swc/cli": "0.1.62",
"@swc/core": "1.3.94",
"@tsconfig/strictest": "2.0.2",
"@types/html-validator": "5.0.5",
"@types/mock-fs": "4.13.3",
"@types/node": "20.8.7",
"@types/sinon": "10.0.20",
"@typescript-eslint/eslint-plugin": "6.9.0",
"@typescript-eslint/parser": "6.9.0",
2023-07-02 12:19:45 +02:00
"editorconfig-checker": "5.1.1",
"eslint": "8.52.0",
"eslint-config-conventions": "12.0.0",
2023-08-09 15:01:28 +02:00
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-promise": "6.1.1",
2023-08-09 15:01:28 +02:00
"eslint-plugin-unicorn": "48.0.1",
"execa": "8.0.1",
"lint-staged": "15.0.2",
"markdownlint-cli2": "0.10.0",
2023-07-02 12:19:45 +02:00
"markdownlint-rule-relative-links": "2.1.0",
2023-01-10 22:15:14 +01:00
"mock-fs": "5.2.0",
"prettier": "3.0.3",
"rimraf": "5.0.5",
"semantic-release": "22.0.5",
"serve": "14.2.1",
"sinon": "17.0.0",
"typescript": "5.2.2"
2022-01-06 19:52:25 +01:00
}
}