-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.04 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "flow-cmean",
"version": "0.0.0",
"description": "Transform stream factory to calculate arithmetic means for streamed data arrays (chunks).",
"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-cmean.git"
},
"keywords": [
"stream",
"writable",
"readable",
"transform",
"reduce",
"flow",
"flow.io",
"chunk",
"mean",
"average",
"avg",
"stats",
"statistics"
],
"bugs": {
"url": "https://github.com/flow-io/flow-cmean/issues"
},
"dependencies": {
"through2": "^0.5.1"
},
"devDependencies": {
"chai": "1.x.x",
"event-stream": "^3.1.7",
"mocha": "1.x.x",
"flow-chunkify": "~0.0.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
]
}