CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
package.json47 linesDownload Raw Back to lazystream
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}47 
basant307/AI_Governance_Project · CoolFace