You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
713 B
46 lines
713 B
{ |
|
"name": "get-stream", |
|
"version": "4.1.0", |
|
"description": "Get a stream as a string, buffer, or array", |
|
"license": "MIT", |
|
"repository": "sindresorhus/get-stream", |
|
"author": { |
|
"name": "Sindre Sorhus", |
|
"email": "sindresorhus@gmail.com", |
|
"url": "sindresorhus.com" |
|
}, |
|
"engines": { |
|
"node": ">=6" |
|
}, |
|
"scripts": { |
|
"test": "xo && ava" |
|
}, |
|
"files": [ |
|
"index.js", |
|
"buffer-stream.js" |
|
], |
|
"keywords": [ |
|
"get", |
|
"stream", |
|
"promise", |
|
"concat", |
|
"string", |
|
"text", |
|
"buffer", |
|
"read", |
|
"data", |
|
"consume", |
|
"readable", |
|
"readablestream", |
|
"array", |
|
"object" |
|
], |
|
"dependencies": { |
|
"pump": "^3.0.0" |
|
}, |
|
"devDependencies": { |
|
"ava": "*", |
|
"into-stream": "^3.0.0", |
|
"xo": "*" |
|
} |
|
}
|
|
|