package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "micromark-util-encode",
  3. "version": "2.0.1",
  4. "description": "micromark utility to encode dangerous html characters",
  5. "license": "MIT",
  6. "keywords": [
  7. "micromark",
  8. "util",
  9. "utility",
  10. "html",
  11. "encode"
  12. ],
  13. "repository": "https://github.com/micromark/micromark/tree/main/packages/micromark-util-encode",
  14. "bugs": "https://github.com/micromark/micromark/issues",
  15. "funding": [
  16. {
  17. "type": "GitHub Sponsors",
  18. "url": "https://github.com/sponsors/unifiedjs"
  19. },
  20. {
  21. "type": "OpenCollective",
  22. "url": "https://opencollective.com/unified"
  23. }
  24. ],
  25. "author": "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)",
  26. "contributors": [
  27. "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
  28. ],
  29. "sideEffects": false,
  30. "type": "module",
  31. "files": [
  32. "index.d.ts.map",
  33. "index.d.ts",
  34. "index.js"
  35. ],
  36. "exports": "./index.js",
  37. "xo": {
  38. "envs": [
  39. "shared-node-browser"
  40. ],
  41. "prettier": true,
  42. "rules": {
  43. "unicorn/prefer-string-replace-all": "off",
  44. "unicorn/prefer-code-point": "off"
  45. }
  46. }
  47. }