package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. {
  2. "name": "micromark",
  3. "version": "4.0.2",
  4. "description": "small commonmark compliant markdown parser with positional info and concrete tokens",
  5. "license": "MIT",
  6. "keywords": [
  7. "commonmark",
  8. "compiler",
  9. "gfm",
  10. "html",
  11. "lexer",
  12. "markdown",
  13. "markup",
  14. "md",
  15. "unified",
  16. "parse",
  17. "parser",
  18. "plugin",
  19. "process",
  20. "remark",
  21. "render",
  22. "renderer",
  23. "token",
  24. "tokenizer"
  25. ],
  26. "repository": "https://github.com/micromark/micromark/tree/main/packages/micromark",
  27. "bugs": "https://github.com/micromark/micromark/issues",
  28. "funding": [
  29. {
  30. "type": "GitHub Sponsors",
  31. "url": "https://github.com/sponsors/unifiedjs"
  32. },
  33. {
  34. "type": "OpenCollective",
  35. "url": "https://opencollective.com/unified"
  36. }
  37. ],
  38. "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
  39. "contributors": [
  40. "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
  41. ],
  42. "sideEffects": false,
  43. "type": "module",
  44. "files": [
  45. "dev/",
  46. "lib/",
  47. "index.d.ts.map",
  48. "index.d.ts",
  49. "index.js",
  50. "stream.d.ts.map",
  51. "stream.d.ts",
  52. "stream.js"
  53. ],
  54. "exports": {
  55. ".": {
  56. "development": "./dev/index.js",
  57. "default": "./index.js"
  58. },
  59. "./stream": {
  60. "development": "./dev/stream.js",
  61. "default": "./stream.js"
  62. }
  63. },
  64. "dependencies": {
  65. "@types/debug": "^4.0.0",
  66. "debug": "^4.0.0",
  67. "decode-named-character-reference": "^1.0.0",
  68. "devlop": "^1.0.0",
  69. "micromark-core-commonmark": "^2.0.0",
  70. "micromark-factory-space": "^2.0.0",
  71. "micromark-util-character": "^2.0.0",
  72. "micromark-util-chunked": "^2.0.0",
  73. "micromark-util-combine-extensions": "^2.0.0",
  74. "micromark-util-decode-numeric-character-reference": "^2.0.0",
  75. "micromark-util-encode": "^2.0.0",
  76. "micromark-util-normalize-identifier": "^2.0.0",
  77. "micromark-util-resolve-all": "^2.0.0",
  78. "micromark-util-sanitize-uri": "^2.0.0",
  79. "micromark-util-subtokenize": "^2.0.0",
  80. "micromark-util-symbol": "^2.0.0",
  81. "micromark-util-types": "^2.0.0"
  82. },
  83. "scripts": {
  84. "build": "micromark-build"
  85. },
  86. "xo": {
  87. "envs": [
  88. "shared-node-browser"
  89. ],
  90. "prettier": true,
  91. "rules": {
  92. "logical-assignment-operators": "off",
  93. "max-depth": "off",
  94. "unicorn/no-this-assignment": "off",
  95. "unicorn/prefer-at": "off",
  96. "unicorn/prefer-code-point": "off",
  97. "unicorn/prefer-event-target": "off"
  98. }
  99. }
  100. }