package.json 1001 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "parse5-html-rewriting-stream",
  3. "type": "module",
  4. "description": "Streaming HTML rewriter.",
  5. "version": "7.0.0",
  6. "author": "Ivan Nikulin <ifaaan@gmail.com> (https://github.com/inikulin)",
  7. "contributors": "https://github.com/inikulin/parse5/graphs/contributors",
  8. "homepage": "https://github.com/inikulin/parse5",
  9. "funding": "https://github.com/inikulin/parse5?sponsor=1",
  10. "keywords": [
  11. "parse5",
  12. "parser",
  13. "stream",
  14. "streaming",
  15. "rewritter",
  16. "rewrite",
  17. "HTML"
  18. ],
  19. "license": "MIT",
  20. "main": "dist/index.js",
  21. "module": "dist/index.js",
  22. "types": "dist/index.d.ts",
  23. "exports": "./dist/index.js",
  24. "dependencies": {
  25. "entities": "^4.3.0",
  26. "parse5": "^7.0.0",
  27. "parse5-sax-parser": "^7.0.0"
  28. },
  29. "repository": {
  30. "type": "git",
  31. "url": "git://github.com/inikulin/parse5.git"
  32. },
  33. "files": [
  34. "dist",
  35. "!*.map"
  36. ]
  37. }