package.json 776 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "escape-goat",
  3. "version": "3.0.0",
  4. "description": "Escape a string for use in HTML or the inverse",
  5. "license": "MIT",
  6. "repository": "sindresorhus/escape-goat",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "sindresorhus.com"
  12. },
  13. "engines": {
  14. "node": ">=10"
  15. },
  16. "scripts": {
  17. "test": "xo && ava && tsd"
  18. },
  19. "files": [
  20. "index.js",
  21. "index.d.ts"
  22. ],
  23. "keywords": [
  24. "escape",
  25. "unescape",
  26. "html",
  27. "entity",
  28. "entities",
  29. "escaping",
  30. "sanitize",
  31. "sanitization",
  32. "utility",
  33. "template",
  34. "attribute",
  35. "value",
  36. "interpolate",
  37. "xss",
  38. "goat",
  39. "🐐"
  40. ],
  41. "devDependencies": {
  42. "ava": "^2.4.0",
  43. "tsd": "^0.11.0",
  44. "xo": "^0.25.3"
  45. }
  46. }