Files
coopgo/node_modules/rehype-remark/package.json
sgauthier 6e64e138e2
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
planning
2024-10-14 09:15:30 +02:00

102 lines
2.4 KiB
JSON

{
"name": "rehype-remark",
"version": "8.1.1",
"description": "rehype plugin to transform to remark",
"license": "MIT",
"keywords": [
"unified",
"rehype",
"rehype-plugin",
"remark",
"remark-plugin",
"html",
"markdown",
"hast",
"mdast"
],
"repository": "rehypejs/rehype-remark",
"bugs": "https://github.com/rehypejs/rehype-remark/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)"
],
"dependencies": {
"@types/hast": "^2.0.0",
"@types/mdast": "^3.0.0",
"@types/unist": "^2.0.0",
"hast-util-to-mdast": "^7.0.0"
},
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"devDependencies": {
"@types/tape": "^4.0.0",
"browserify": "^17.0.0",
"nyc": "^15.0.0",
"prettier": "^2.0.0",
"rehype-parse": "^7.0.0",
"rehype-stringify": "^8.0.0",
"remark-cli": "^9.0.0",
"remark-preset-wooorm": "^8.0.0",
"remark-stringify": "^9.0.0",
"rimraf": "^3.0.0",
"tape": "^5.0.0",
"tinyify": "^3.0.0",
"type-coverage": "^2.0.0",
"typescript": "^4.0.0",
"unified": "^9.0.0",
"xo": "^0.36.0"
},
"scripts": {
"format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
"build-types": "rimraf \"*.d.ts\" && tsc && type-coverage",
"build-bundle": "browserify . -s rehypeRemark -o rehype-remark.js",
"build-mangle": "browserify . -s rehypeRemark -o rehype-remark.min.js -p tinyify",
"build": "npm run build-types && npm run build-bundle && npm run build-mangle",
"test-api": "node test",
"test-coverage": "nyc --reporter lcov tape test.js",
"test": "npm run format && npm run build && npm run test-coverage"
},
"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,
"ignores": [
"rehype-remark.js"
]
},
"remarkConfig": {
"plugins": [
"preset-wooorm"
]
},
"typeCoverage": {
"atLeast": 100,
"detail": true,
"strict": true,
"ignoreCatch": true,
"ignoreFiles": [
"index.d.ts"
]
}
}