1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
{
"name": "stream-to-array",
"description": "Concatenate a readable stream's data into a single array",
"version": "1.0.0",
"author": {
"name": "Jonathan Ong",
"email": "me@jongleberry.com",
"url": "http://jongleberry.com",
"twitter": "https://twitter.com/jongleberry"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/stream-utils/stream-to-array.git"
},
"bugs": {
"mail": "me@jongleberry.com",
"url": "https://github.com/stream-utils/stream-to-array/issues"
},
"devDependencies": {
"co": "*",
"gnode": "*",
"mocha": "*"
},
"scripts": {
"test": "NODE=gnode make test"
},
"engines": {
"node": ">= 0.10.0"
}
}
|