package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "parse5",
  3. "type": "module",
  4. "description": "HTML parser and serializer.",
  5. "version": "8.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://parse5.js.org",
  9. "funding": "https://github.com/inikulin/parse5?sponsor=1",
  10. "dependencies": {
  11. "entities": "^6.0.0"
  12. },
  13. "keywords": [
  14. "html",
  15. "parser",
  16. "html5",
  17. "WHATWG",
  18. "specification",
  19. "fast",
  20. "html parser",
  21. "html5 parser",
  22. "htmlparser",
  23. "parse5",
  24. "serializer",
  25. "html serializer",
  26. "htmlserializer",
  27. "parse",
  28. "serialize"
  29. ],
  30. "license": "MIT",
  31. "main": "dist/index.js",
  32. "module": "dist/index.js",
  33. "types": "dist/index.d.ts",
  34. "exports": {
  35. ".": {
  36. "default": "./dist/index.js"
  37. }
  38. },
  39. "scripts": {},
  40. "repository": {
  41. "type": "git",
  42. "url": "git://github.com/inikulin/parse5.git"
  43. },
  44. "files": [
  45. "dist/**/*.js",
  46. "dist/**/*.d.ts"
  47. ]
  48. }