-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.09 KB
/
package.json
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
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "accum",
"description": "accum - Simple write stream which accumulates or collects the data from a stream. Pipe your stream into this to get all the data as buffer, string, or raw array. (streams2)",
"version": "0.3.7",
"author": "Jeff Barczewski <jeff.barczewski@gmail.com>",
"repository": {
"type": "git",
"url": "http://github.com/jeffbski/accum.git"
},
"bugs": {
"url": "http://github.com/jeffbski/accum/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/jeffbski/accum/raw/master/LICENSE"
}
],
"main": "lib/accum",
"engines": {
"node": ">=0.8"
},
"dependencies": {
"readable-stream": "https://github.com/jeffbski/readable-stream/archive/v1.0.2-object-transform2-ret-self.tar.gz"
},
"devDependencies": {
"mocha": "~1.9.0",
"chai": "~1.5.0",
"chai-stack": "~1.3.1",
"pass-stream": "~0.1.3"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha ./test/*.mocha.js"
},
"keywords": [
"stream",
"streams2",
"data",
"accumulator",
"collector",
"filter",
"pipe"
]
}