markdownlint-rule-relative-.../package.json

72 lines
2.1 KiB
JSON
Raw Permalink Normal View History

2023-01-02 15:23:16 +01:00
{
"name": "markdownlint-rule-relative-links",
"version": "0.0.0-development",
"public": true,
"description": "Custom rule for markdownlint to validate relative links.",
2023-06-24 10:11:32 +02:00
"author": "Théo LUDWIG <contact@theoludwig.fr>",
2023-01-02 15:23:16 +01:00
"license": "MIT",
"repository": {
"type": "git",
2023-06-24 10:11:32 +02:00
"url": "https://github.com/theoludwig/markdownlint-rule-relative-links.git"
2023-01-02 15:23:16 +01:00
},
"bugs": {
2023-06-24 10:11:32 +02:00
"url": "https://github.com/theoludwig/markdownlint-rule-relative-links/issues"
2023-01-02 15:23:16 +01:00
},
2023-06-24 10:11:32 +02:00
"homepage": "https://github.com/theoludwig/markdownlint-rule-relative-links#readme",
2023-01-02 15:23:16 +01:00
"keywords": [
"markdownlint",
"markdownlint-rule"
],
"main": "src/index.js",
"files": [
"src"
],
"publishConfig": {
"access": "public",
"provenance": true
},
2023-01-02 15:23:16 +01:00
"engines": {
"node": ">=16.0.0",
2023-05-13 16:03:06 +02:00
"npm": ">=9.0.0"
2023-01-02 15:23:16 +01:00
},
"scripts": {
"lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker",
"lint:markdown": "markdownlint-cli2",
2023-07-18 23:18:39 +02:00
"lint:eslint": "eslint . --max-warnings 0 --report-unused-disable-directives --ignore-path .gitignore",
2023-06-24 10:00:40 +02:00
"lint:prettier": "prettier . --check --ignore-path .gitignore",
"lint:javascript": "tsc --project jsconfig.json --noEmit",
2023-01-02 15:23:16 +01:00
"lint:staged": "lint-staged",
"test": "node --test --experimental-test-coverage ./test",
2023-01-02 15:23:16 +01:00
"release": "semantic-release",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"dependencies": {
2023-12-26 21:11:07 +01:00
"markdown-it": "14.0.0"
},
2023-01-02 15:23:16 +01:00
"devDependencies": {
2024-01-09 21:33:27 +01:00
"@commitlint/cli": "18.4.4",
"@commitlint/config-conventional": "18.4.4",
"@types/markdown-it": "13.0.7",
2024-01-09 21:33:27 +01:00
"@types/node": "20.10.8",
2023-11-23 00:37:15 +01:00
"editorconfig-checker": "5.1.2",
2023-12-26 21:11:07 +01:00
"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.2",
2023-01-02 15:23:16 +01:00
"eslint-plugin-promise": "6.1.1",
2023-12-26 21:11:07 +01:00
"eslint-plugin-unicorn": "50.0.1",
2023-04-02 21:03:51 +02:00
"husky": "8.0.3",
2023-12-26 21:11:07 +01:00
"lint-staged": "15.2.0",
2024-01-09 21:33:27 +01:00
"markdownlint": "0.33.0",
2023-11-23 00:37:15 +01:00
"markdownlint-cli2": "0.11.0",
2023-01-02 15:23:16 +01:00
"pinst": "3.0.0",
2023-12-26 21:11:07 +01:00
"prettier": "3.1.1",
"semantic-release": "22.0.12",
"typescript": "5.3.3"
2023-01-02 15:23:16 +01:00
}
}