package.json 979 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "gunzip-maybe",
  3. "description": "Transform stream that gunzips its input if it is gzipped and just echoes it if not",
  4. "version": "1.4.2",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/mafintosh/gunzip-maybe"
  8. },
  9. "license": "MIT",
  10. "dependencies": {
  11. "browserify-zlib": "^0.1.4",
  12. "is-deflate": "^1.0.0",
  13. "is-gzip": "^1.0.0",
  14. "peek-stream": "^1.1.0",
  15. "pumpify": "^1.3.3",
  16. "through2": "^2.0.3"
  17. },
  18. "devDependencies": {
  19. "concat-stream": "^1.4.5",
  20. "standard": "^9.0.0",
  21. "tape": "^4.6.3"
  22. },
  23. "scripts": {
  24. "test": "standard && tape test.js"
  25. },
  26. "bin": {
  27. "gunzip-maybe": "./bin.js"
  28. },
  29. "browser": {
  30. "zlib": "browserify-zlib"
  31. },
  32. "bugs": {
  33. "url": "https://github.com/mafintosh/gunzip-maybe/issues"
  34. },
  35. "homepage": "https://github.com/mafintosh/gunzip-maybe",
  36. "main": "index.js",
  37. "author": "Mathias Buus (@mafintosh)",
  38. "coordinates": [
  39. 55.6666904,
  40. 12.5797771
  41. ]
  42. }