mirror of
https://github.com/theoludwig/markdownlint-rule-relative-links.git
synced 2024-11-04 18:21:31 +01:00
69 lines
2.0 KiB
JSON
69 lines
2.0 KiB
JSON
{
|
|
"name": "markdownlint-rule-relative-links",
|
|
"version": "0.0.0-development",
|
|
"public": true,
|
|
"description": "Custom rule for markdownlint to validate relative links.",
|
|
"author": "Théo LUDWIG <contact@theoludwig.fr>",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/theoludwig/markdownlint-rule-relative-links.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/theoludwig/markdownlint-rule-relative-links/issues"
|
|
},
|
|
"homepage": "https://github.com/theoludwig/markdownlint-rule-relative-links#readme",
|
|
"keywords": [
|
|
"markdownlint",
|
|
"markdownlint-rule"
|
|
],
|
|
"main": "src/index.js",
|
|
"files": [
|
|
"src"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"provenance": true
|
|
},
|
|
"engines": {
|
|
"node": ">=16.0.0",
|
|
"npm": ">=9.0.0"
|
|
},
|
|
"scripts": {
|
|
"lint:commit": "commitlint",
|
|
"lint:editorconfig": "editorconfig-checker",
|
|
"lint:markdown": "markdownlint-cli2",
|
|
"lint:eslint": "eslint . --max-warnings 0 --report-unused-disable-directives --ignore-path .gitignore",
|
|
"lint:prettier": "prettier . --check --ignore-path .gitignore",
|
|
"lint:staged": "lint-staged",
|
|
"test": "node --test ./test",
|
|
"release": "semantic-release",
|
|
"postinstall": "husky install",
|
|
"prepublishOnly": "pinst --disable",
|
|
"postpublish": "pinst --enable"
|
|
},
|
|
"dependencies": {
|
|
"markdown-it": "13.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "18.4.3",
|
|
"@commitlint/config-conventional": "18.4.3",
|
|
"@types/node": "20.9.4",
|
|
"editorconfig-checker": "5.1.2",
|
|
"eslint": "8.54.0",
|
|
"eslint-config-conventions": "13.0.0",
|
|
"eslint-config-prettier": "9.0.0",
|
|
"eslint-plugin-import": "2.29.0",
|
|
"eslint-plugin-prettier": "5.0.1",
|
|
"eslint-plugin-promise": "6.1.1",
|
|
"eslint-plugin-unicorn": "49.0.0",
|
|
"husky": "8.0.3",
|
|
"lint-staged": "15.1.0",
|
|
"markdownlint": "0.32.1",
|
|
"markdownlint-cli2": "0.11.0",
|
|
"pinst": "3.0.0",
|
|
"prettier": "3.1.0",
|
|
"semantic-release": "22.0.8"
|
|
}
|
|
}
|