package.json
 1  {
 2    "name": "lazystream",
 3    "version": "1.0.0",
 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    "dependencies": {
30      "readable-stream": "^2.0.5"
31    },
32    "devDependencies": {
33      "nodeunit": "^0.9.1"
34    },
35    "keywords": [
36      "emfile",
37      "lazy",
38      "streams",
39      "stream"
40    ]
41  }