package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. {
  2. "name": "remark-parse",
  3. "version": "11.0.0",
  4. "description": "remark plugin to add support for parsing markdown input",
  5. "license": "MIT",
  6. "keywords": [
  7. "abstract",
  8. "ast",
  9. "markdown",
  10. "mdast",
  11. "parse",
  12. "plugin",
  13. "remark",
  14. "remark-plugin",
  15. "syntax",
  16. "tree",
  17. "unified"
  18. ],
  19. "homepage": "https://remark.js.org",
  20. "repository": "https://github.com/remarkjs/remark/tree/main/packages/remark-parse",
  21. "bugs": "https://github.com/remarkjs/remark/issues",
  22. "funding": {
  23. "type": "opencollective",
  24. "url": "https://opencollective.com/unified"
  25. },
  26. "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
  27. "contributors": [
  28. "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
  29. "Eugene Sharygin <eush77@gmail.com>",
  30. "Junyoung Choi <fluke8259@gmail.com>",
  31. "Elijah Hamovitz <elijahhamovitz@gmail.com>",
  32. "Ika <ikatyang@gmail.com>"
  33. ],
  34. "sideEffects": false,
  35. "type": "module",
  36. "exports": "./index.js",
  37. "files": [
  38. "lib/",
  39. "index.d.ts",
  40. "index.js"
  41. ],
  42. "dependencies": {
  43. "@types/mdast": "^4.0.0",
  44. "mdast-util-from-markdown": "^2.0.0",
  45. "micromark-util-types": "^2.0.0",
  46. "unified": "^11.0.0"
  47. },
  48. "scripts": {},
  49. "typeCoverage": {
  50. "atLeast": 100,
  51. "detail": true,
  52. "ignoreCatch": true,
  53. "strict": true
  54. },
  55. "xo": {
  56. "overrides": [
  57. {
  58. "files": [
  59. "**/*.ts"
  60. ],
  61. "rules": {
  62. "@typescript-eslint/ban-types": "off",
  63. "@typescript-eslint/consistent-type-definitions": "off"
  64. }
  65. }
  66. ],
  67. "prettier": true,
  68. "rules": {
  69. "unicorn/no-this-assignment": "off"
  70. }
  71. }
  72. }