wallet-core/node_modules/stream-to-array/package.json

37 lines
893 B
JSON
Raw Normal View History

2016-10-10 03:43:44 +02:00
{
2016-11-03 01:33:53 +01:00
"name": "stream-to-array",
"description": "Concatenate a readable stream's data into a single array",
2018-09-20 02:56:13 +02:00
"version": "2.3.0",
2016-10-10 03:43:44 +02:00
"author": {
"name": "Jonathan Ong",
"email": "me@jongleberry.com",
2016-11-03 01:33:53 +01:00
"url": "http://jongleberry.com",
"twitter": "https://twitter.com/jongleberry"
},
"license": "MIT",
2018-09-20 02:56:13 +02:00
"repository": "stream-utils/stream-to-array",
"dependencies": {
"any-promise": "^1.1.0"
2016-10-10 03:43:44 +02:00
},
"devDependencies": {
2018-09-20 02:56:13 +02:00
"bluebird": "^3.1.1",
"istanbul": "^0.4.2",
"mocha": "^2.3.3"
2016-10-10 03:43:44 +02:00
},
"scripts": {
2018-09-20 02:56:13 +02:00
"test": "mocha --reporter spec --bail",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot"
2016-10-10 03:43:44 +02:00
},
2018-09-20 02:56:13 +02:00
"files": [
"index.js"
],
"keywords": [
"stream",
"streams",
"buffer",
"array",
"concat"
]
2016-10-10 03:43:44 +02:00
}