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

61 lines
1.6 KiB
JSON
Raw 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-01-02 15:23:16 +01:00
},
"scripts": {
"lint:editorconfig": "editorconfig-checker",
"lint:markdown": "markdownlint-cli2",
2024-11-11 13:24:45 +01:00
"lint:eslint": "eslint . --max-warnings 0",
"lint:prettier": "prettier . --check",
"lint:typescript": "tsc --noEmit",
2024-01-29 21:24:22 +01:00
"test": "node --test",
"release": "semantic-release"
2023-01-02 15:23:16 +01:00
},
"dependencies": {
"markdown-it": "14.1.0"
},
2023-01-02 15:23:16 +01:00
"devDependencies": {
"@types/markdown-it": "14.1.2",
2024-11-11 13:24:45 +01:00
"@types/node": "22.9.0",
"editorconfig-checker": "6.0.0",
"eslint": "9.14.0",
"eslint-config-conventions": "17.0.0",
"eslint-plugin-promise": "7.1.0",
2024-11-11 13:24:45 +01:00
"eslint-plugin-unicorn": "56.0.0",
"eslint-plugin-import-x": "4.4.0",
"globals": "15.12.0",
"markdownlint": "0.36.1",
"markdownlint-cli2": "0.15.0",
"prettier": "3.3.3",
2024-05-27 21:26:05 +02:00
"semantic-release": "23.1.1",
2024-11-11 13:24:45 +01:00
"typescript-eslint": "8.13.0",
"typescript": "5.6.3"
2023-01-02 15:23:16 +01:00
}
}