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.",
|
|
|
|
"author": "Divlo <contact@divlo.fr>",
|
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/Divlo/markdownlint-rule-relative-links.git"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/Divlo/markdownlint-rule-relative-links/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/Divlo/markdownlint-rule-relative-links#readme",
|
|
|
|
"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:commit": "commitlint",
|
|
|
|
"lint:editorconfig": "editorconfig-checker",
|
|
|
|
"lint:markdown": "markdownlint-cli2",
|
2023-06-24 10:00:40 +02:00
|
|
|
"lint:eslint": "eslint . --ignore-path .gitignore",
|
|
|
|
"lint:prettier": "prettier . --check --ignore-path .gitignore",
|
2023-01-02 15:23:16 +01:00
|
|
|
"lint:staged": "lint-staged",
|
2023-06-24 10:00:40 +02:00
|
|
|
"test": "node --test ./test",
|
2023-01-02 15:23:16 +01:00
|
|
|
"release": "semantic-release",
|
|
|
|
"postinstall": "husky install",
|
|
|
|
"prepublishOnly": "pinst --disable",
|
|
|
|
"postpublish": "pinst --enable"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-06-24 10:00:40 +02:00
|
|
|
"@commitlint/cli": "17.6.5",
|
|
|
|
"@commitlint/config-conventional": "17.6.5",
|
|
|
|
"@types/node": "20.3.1",
|
2023-04-02 21:03:51 +02:00
|
|
|
"editorconfig-checker": "5.0.1",
|
2023-06-24 10:00:40 +02:00
|
|
|
"eslint": "8.43.0",
|
2023-05-13 16:03:06 +02:00
|
|
|
"eslint-config-conventions": "9.0.0",
|
2023-04-02 21:03:51 +02:00
|
|
|
"eslint-config-prettier": "8.8.0",
|
|
|
|
"eslint-plugin-import": "2.27.5",
|
2023-01-02 15:23:16 +01:00
|
|
|
"eslint-plugin-prettier": "4.2.1",
|
|
|
|
"eslint-plugin-promise": "6.1.1",
|
2023-05-13 16:03:06 +02:00
|
|
|
"eslint-plugin-unicorn": "47.0.0",
|
2023-04-02 21:03:51 +02:00
|
|
|
"husky": "8.0.3",
|
2023-05-13 16:03:06 +02:00
|
|
|
"lint-staged": "13.2.2",
|
2023-06-24 10:00:40 +02:00
|
|
|
"markdownlint": "0.29.0",
|
|
|
|
"markdownlint-cli2": "0.8.1",
|
2023-01-02 15:23:16 +01:00
|
|
|
"pinst": "3.0.0",
|
2023-05-13 16:03:06 +02:00
|
|
|
"prettier": "2.8.8",
|
2023-06-24 10:00:40 +02:00
|
|
|
"semantic-release": "21.0.5"
|
2023-01-02 15:23:16 +01:00
|
|
|
}
|
|
|
|
}
|