package.json 580 B

123456789101112131415161718192021222324252627
  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": "1.0.2",
  9. "author": "Domenic Denicola <d@domenic.me> (https://domenic.me/)",
  10. "license": "MIT",
  11. "repository": "jsdom/html-encoding-sniffer",
  12. "main": "lib/html-encoding-sniffer.js",
  13. "files": [
  14. "lib/"
  15. ],
  16. "scripts": {
  17. "test": "mocha",
  18. "lint": "eslint lib test"
  19. },
  20. "dependencies": {
  21. "whatwg-encoding": "^1.0.1"
  22. },
  23. "devDependencies": {
  24. "eslint": "^3.8.0",
  25. "mocha": "^3.1.2"
  26. }
  27. }