package.json 864 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "unzip-response",
  3. "version": "2.0.1",
  4. "description": "Unzip a HTTP response if needed",
  5. "license": "MIT",
  6. "repository": "sindresorhus/unzip-response",
  7. "maintainers": [
  8. {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "sindresorhus.com"
  12. },
  13. {
  14. "name": "Vsevolod Strukchinsky",
  15. "email": "floatdrop@gmail.com",
  16. "url": "github.com/floatdrop"
  17. }
  18. ],
  19. "engines": {
  20. "node": ">=4"
  21. },
  22. "scripts": {
  23. "test": "xo && ava"
  24. },
  25. "files": [
  26. "index.js"
  27. ],
  28. "keywords": [
  29. "http",
  30. "unzip",
  31. "zlib",
  32. "gzip",
  33. "deflate",
  34. "incoming",
  35. "message",
  36. "response",
  37. "stream"
  38. ],
  39. "devDependencies": {
  40. "ava": "*",
  41. "get-stream": "^2.3.0",
  42. "pify": "^2.3.0",
  43. "rfpify": "^1.0.0",
  44. "xo": "*"
  45. },
  46. "xo": {
  47. "esnext": true
  48. }
  49. }