package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "lazystream",
  3. "version": "1.0.1",
  4. "description": "Open Node Streams on demand.",
  5. "homepage": "https://github.com/jpommerening/node-lazystream",
  6. "author": {
  7. "name": "Jonas Pommerening",
  8. "email": "jonas.pommerening@gmail.com",
  9. "url": "https://npmjs.org/~jpommerening"
  10. },
  11. "contributors": [
  12. "Mario Casciaro <mariocasciaro@gmail.com>"
  13. ],
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/jpommerening/node-lazystream.git"
  17. },
  18. "bugs": {
  19. "url": "https://github.com/jpommerening/node-lazystream/issues"
  20. },
  21. "license": "MIT",
  22. "main": "lib/lazystream.js",
  23. "engines": {
  24. "node": ">= 0.6.3"
  25. },
  26. "scripts": {
  27. "test": "nodeunit test/readable_test.js test/writable_test.js test/pipe_test.js test/fs_test.js"
  28. },
  29. "files": [
  30. "lib/lazystream.js",
  31. "test/*.js",
  32. "test/*.md"
  33. ],
  34. "dependencies": {
  35. "readable-stream": "^2.0.5"
  36. },
  37. "devDependencies": {
  38. "nodeunit": "^0.9.1"
  39. },
  40. "keywords": [
  41. "emfile",
  42. "lazy",
  43. "streams",
  44. "stream"
  45. ]
  46. }