Urara-Blog/node_modules/.pnpm-store/v3/files/70/f1a6b4b259582c157f10d69645452a1b2a2990b388b12bbade41b088e6cd99ddd6ba0c093c3010aa1b7b5f7716715850ec1839a6b23cb64b35379f3458dab1
2022-08-14 01:14:53 +08:00

87 lines
2 KiB
Text

{
"name": "remark-footnotes",
"version": "2.0.0",
"description": "remark plugin to add support for pandoc footnotes",
"license": "MIT",
"keywords": [
"unified",
"remark",
"remark-plugin",
"plugin",
"mdast",
"markdown",
"footnote",
"note",
"definition",
"pandoc"
],
"repository": "remarkjs/remark-footnotes",
"bugs": "https://github.com/remarkjs/remark-footnotes/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)"
],
"types": "types/index.d.ts",
"files": [
"types/index.d.ts",
"index.js"
],
"dependencies": {},
"devDependencies": {
"dtslint": "^3.0.0",
"nyc": "^15.0.0",
"prettier": "^2.0.0",
"rehype-format": "^3.0.0",
"rehype-stringify": "^8.0.0",
"remark-cli": "^8.0.0",
"remark-parse": "^8.0.0",
"remark-preset-wooorm": "^7.0.0",
"remark-rehype": "^7.0.0",
"remark-stringify": "^8.0.0",
"tape": "^5.0.0",
"to-vfile": "^6.0.0",
"unified": "^9.0.0",
"unist-builder": "^2.0.0",
"xo": "^0.33.0"
},
"scripts": {
"format": "remark . -qfo && prettier . --write && xo --fix",
"test-api": "node test",
"test-coverage": "nyc --reporter lcov tape test/index.js",
"test-types": "dtslint types",
"test": "npm run format && npm run test-coverage && npm run test-types"
},
"nyc": {
"check-coverage": true,
"lines": 100,
"functions": 100,
"branches": 100
},
"prettier": {
"tabWidth": 2,
"useTabs": false,
"singleQuote": true,
"bracketSpacing": false,
"semi": false,
"trailingComma": "none"
},
"xo": {
"prettier": true,
"esnext": false,
"rules": {
"unicorn/prefer-optional-catch-binding": "off",
"complexity": "off",
"no-self-compare": "off",
"no-lonely-if": "off"
}
},
"remarkConfig": {
"plugins": [
"preset-wooorm"
]
}
}