remark-lint/packages/remark-lint-no-undefined-references/package.json
2023-12-13 16:54:41 +01:00

63 lines
1.6 KiB
JSON

{
"name": "remark-lint-no-undefined-references",
"version": "4.2.1",
"description": "remark-lint rule to warn when references to undefined definitions are found",
"license": "MIT",
"keywords": [
"definition",
"lint",
"reference",
"remark",
"remark-lint",
"remark-lint-rule",
"rule"
],
"repository": "https://github.com/remarkjs/remark-lint/tree/main/packages/remark-lint-no-undefined-references",
"bugs": "https://github.com/remarkjs/remark-lint/issues",
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/unified"
},
"author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
"contributors": [
"Merlijn Vos <merlijn@soverin.net>",
"Murderlon <merlijn@soverin.net>",
"Titus Wormer <tituswormer@gmail.com>"
],
"sideEffects": false,
"type": "module",
"exports": "./index.js",
"files": [
"index.d.ts",
"index.d.ts.map",
"index.js"
],
"dependencies": {
"@types/mdast": "^4.0.0",
"micromark-util-normalize-identifier": "^2.0.0",
"unified-lint-rule": "^2.0.0",
"unist-util-position": "^5.0.0",
"unist-util-visit": "^5.0.0",
"vfile-location": "^5.0.0"
},
"scripts": {},
"typeCoverage": {
"atLeast": 100,
"detail": true,
"ignoreCatch": true,
"strict": true
},
"xo": {
"prettier": true,
"rules": {
"capitalized-comments": "off",
"complexity": "off",
"max-depth": "off",
"unicorn/prefer-at": "off",
"unicorn/prefer-code-point": "off",
"unicorn/prefer-string-replace-all": "off",
"unicorn/prefer-switch": "off"
}
}
}