UNPKG

strip-markdown

Version:

remark plugin to remove markdown formatting

105 lines (104 loc) 2.52 kB
{ "name": "strip-markdown", "version": "6.0.0", "description": "remark plugin to remove markdown formatting", "license": "MIT", "keywords": [ "markdown", "mdast", "plain", "plugin", "remark", "remark-plugin", "text", "text", "unified" ], "repository": "remarkjs/strip-markdown", "bugs": "https://github.com/remarkjs/strip-markdown/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)", "Ohtake Tomohiro <ohtake.tomohiro@jp.fujitsu.com>" ], "sideEffects": false, "type": "module", "exports": "./index.js", "files": [ "lib/", "index.d.ts", "index.js" ], "dependencies": { "@types/mdast": "^4.0.0" }, "devDependencies": { "@types/node": "^20.0.0", "@types/unist": "^3.0.0", "c8": "^8.0.0", "prettier": "^3.0.0", "remark": "^15.0.0", "remark-cli": "^12.0.0", "remark-directive": "^3.0.0", "remark-gfm": "^4.0.0", "remark-preset-wooorm": "^9.0.0", "type-coverage": "^2.0.0", "typescript": "^5.0.0", "xo": "^0.56.0" }, "scripts": { "build": "tsc --build --clean && tsc --build && type-coverage", "format": "remark . --frail --output --quiet && prettier . --log-level warn --write && xo --fix", "prepack": "npm run build && npm run format", "test": "npm run build && npm run format && npm run test-coverage", "test-api": "node --conditions development test/index.js", "test-coverage": "c8 --100 --reporter lcov npm run test-api" }, "prettier": { "bracketSpacing": false, "singleQuote": true, "semi": false, "tabWidth": 2, "trailingComma": "none", "useTabs": false }, "remarkConfig": { "plugins": [ "remark-preset-wooorm", [ "remark-lint-list-item-indent", "space" ], [ "remark-preset-wooorm/node_modules/remark-gfm/index.js", false ], "remark-gfm" ] }, "typeCoverage": { "atLeast": 100, "detail": true, "ignoreCatch": true, "#": "needed `any`s", "ignoreFiles": [ "lib/index.d.ts" ], "strict": true }, "xo": { "overrides": [ { "files": "**/*.d.ts", "rules": { "@typescript-eslint/consistent-type-definitions": "off" } } ], "prettier": true } }