63 lines
1.7 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",
"types": "src/index.d.ts",
"type": "module",
2023-01-02 15:23:16 +01:00
"files": [
"src"
],
"publishConfig": {
"access": "public",
"provenance": true
},
2023-01-02 15:23:16 +01:00
"engines": {
"node": ">=22.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",
"@types/node": "22.10.2",
2024-11-11 13:24:45 +01:00
"editorconfig-checker": "6.0.0",
"eslint": "9.17.0",
"eslint-config-conventions": "18.0.0",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-unicorn": "56.0.1",
"eslint-plugin-import-x": "4.6.1",
"globals": "15.14.0",
"markdownlint": "0.37.2",
"markdownlint-cli2": "0.17.0",
"prettier": "3.4.2",
"semantic-release": "24.2.0",
"typescript-eslint": "8.18.2",
"typescript": "5.7.2"
2023-01-02 15:23:16 +01:00
}
}