123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- {
- "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"
- ]
- }
- }
|