remark-lint/packages/remark-lint-no-unneeded-full-reference-link/package.json
Titus Wormer da865d01ea
9.1.0
2021-09-18 13:19:20 +02:00

57 lines
1.4 KiB
JSON

{
"name": "remark-lint-no-unneeded-full-reference-link",
"version": "3.1.0",
"description": "remark-lint rule to warn when full reference links are used if they can be collapsed",
"license": "MIT",
"keywords": [
"remark",
"lint",
"rule",
"remark-lint-rule",
"full",
"collapsed",
"reference",
"link"
],
"repository": {
"type": "git",
"url": "https://github.com/remarkjs/remark-lint",
"directory": "packages/remark-lint-no-unneeded-full-reference-link"
},
"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": [
"Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
],
"sideEffects": false,
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.d.ts",
"index.js"
],
"dependencies": {
"@types/mdast": "^3.0.0",
"micromark-util-normalize-identifier": "^1.0.0",
"unified": "^10.0.0",
"unified-lint-rule": "^2.0.0",
"unist-util-generated": "^2.0.0",
"unist-util-visit": "^4.0.0"
},
"scripts": {
"build": "rimraf \"*.d.ts\" && tsc && type-coverage"
},
"xo": false,
"typeCoverage": {
"atLeast": 100,
"detail": true,
"strict": true,
"ignoreCatch": true
}
}