package.json 801 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "inflation",
  3. "description": "Easily unzip an HTTP stream",
  4. "version": "2.0.0",
  5. "author": "Jonathan Ong <me@jongleberry.com> (http://jongleberry.com)",
  6. "license": "MIT",
  7. "repository": "stream-utils/inflation",
  8. "keywords": [
  9. "decompress",
  10. "unzip",
  11. "inflate",
  12. "zlib",
  13. "gunzip"
  14. ],
  15. "devDependencies": {
  16. "istanbul": "0.2.10",
  17. "mocha": "~1.20.1",
  18. "readable-stream": "~1.0.27",
  19. "should": "4.0.4"
  20. },
  21. "engines": {
  22. "node": ">= 0.8.0"
  23. },
  24. "scripts": {
  25. "test": "mocha --reporter spec --bail test/",
  26. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/",
  27. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec test/"
  28. },
  29. "files": [
  30. "index.js"
  31. ]
  32. }