-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 973 Bytes
/
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
45
46
47
48
49
50
51
52
{
"name": "flow-chunkify",
"version": "0.0.0",
"description": "Transform stream factory to chunk streamed data values.",
"author": {
"name": "Athan Reines",
"email": "[email protected]"
},
"contributors": [
{
"name": "Athan Reines",
"email": "[email protected]"
}
],
"scripts": {
"test": "mocha"
},
"main": "./lib",
"repository": {
"type": "git",
"url": "git://github.com/flow-io/flow-chunkify.git"
},
"keywords": [
"stream",
"writable",
"readable",
"transform",
"flow",
"flow.io",
"chunk",
"chunkify",
"array",
"arrays"
],
"bugs": {
"url": "https://github.com/flow-io/flow-chunkify/issues"
},
"dependencies": {
"through2": "^0.5.1"
},
"devDependencies": {
"chai": "1.x.x",
"event-stream": "^3.1.7",
"mocha": "1.x.x"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
]
}