package.json 749 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "html-encoding-sniffer",
  3. "description": "Sniff the encoding from a HTML byte stream",
  4. "keywords": [
  5. "encoding",
  6. "html"
  7. ],
  8. "version": "6.0.0",
  9. "author": "Domenic Denicola <d@domenic.me> (https://domenic.me/)",
  10. "license": "MIT",
  11. "repository": {
  12. "type": "git",
  13. "url": "git+https://github.com/jsdom/html-encoding-sniffer.git"
  14. },
  15. "main": "lib/html-encoding-sniffer.js",
  16. "files": [
  17. "lib/"
  18. ],
  19. "scripts": {
  20. "test": "node --test",
  21. "lint": "eslint"
  22. },
  23. "dependencies": {
  24. "@exodus/bytes": "^1.6.0"
  25. },
  26. "devDependencies": {
  27. "@domenic/eslint-config": "^4.0.1",
  28. "eslint": "^9.39.2",
  29. "globals": "^16.5.0"
  30. },
  31. "engines": {
  32. "node": "^20.19.0 || ^22.12.0 || >=24.0.0"
  33. }
  34. }