package.json 888 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "parse5-sax-parser",
  3. "type": "module",
  4. "description": "Streaming SAX-style HTML parser.",
  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. "SAX"
  16. ],
  17. "license": "MIT",
  18. "main": "dist/index.js",
  19. "module": "dist/index.js",
  20. "types": "dist/index.d.ts",
  21. "exports": "./dist/index.js",
  22. "dependencies": {
  23. "parse5": "^7.0.0"
  24. },
  25. "repository": {
  26. "type": "git",
  27. "url": "git://github.com/inikulin/parse5.git"
  28. },
  29. "files": [
  30. "dist",
  31. "!*.map"
  32. ]
  33. }