package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "micromark-util-decode-numeric-character-reference",
  3. "version": "2.0.1",
  4. "description": "micromark utility to decode numeric character references",
  5. "license": "MIT",
  6. "keywords": [
  7. "micromark",
  8. "util",
  9. "utility",
  10. "decode",
  11. "numeric",
  12. "number",
  13. "character",
  14. "reference"
  15. ],
  16. "repository": "https://github.com/micromark/micromark/tree/main/packages/micromark-util-decode-numeric-character-reference",
  17. "bugs": "https://github.com/micromark/micromark/issues",
  18. "funding": [
  19. {
  20. "type": "GitHub Sponsors",
  21. "url": "https://github.com/sponsors/unifiedjs"
  22. },
  23. {
  24. "type": "OpenCollective",
  25. "url": "https://opencollective.com/unified"
  26. }
  27. ],
  28. "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
  29. "contributors": [
  30. "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
  31. ],
  32. "sideEffects": false,
  33. "type": "module",
  34. "files": [
  35. "dev/",
  36. "index.d.ts",
  37. "index.js"
  38. ],
  39. "exports": {
  40. "development": "./dev/index.js",
  41. "default": "./index.js"
  42. },
  43. "dependencies": {
  44. "micromark-util-symbol": "^2.0.0"
  45. },
  46. "scripts": {
  47. "build": "micromark-build"
  48. },
  49. "xo": {
  50. "envs": [
  51. "shared-node-browser"
  52. ],
  53. "prettier": true,
  54. "rules": {
  55. "unicorn/prefer-code-point": "off"
  56. }
  57. }
  58. }