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"
|
|
|
|
],
|
2023-05-13 16:05:01 +02:00
|
|
|
"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: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",
|
2024-09-07 00:03:10 +02:00
|
|
|
"release": "semantic-release"
|
2023-01-02 15:23:16 +01:00
|
|
|
},
|
2023-06-24 11:42:09 +02:00
|
|
|
"dependencies": {
|
2024-04-06 20:10:13 +02:00
|
|
|
"markdown-it": "14.1.0"
|
2023-06-24 11:42:09 +02:00
|
|
|
},
|
2023-01-02 15:23:16 +01:00
|
|
|
"devDependencies": {
|
2024-09-07 00:03:10 +02:00
|
|
|
"@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",
|
2024-09-07 00:03:10 +02:00
|
|
|
"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",
|
2024-09-07 00:03:10 +02:00
|
|
|
"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
|
|
|
}
|
|
|
|
}
|