-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 990 Bytes
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 990 Bytes
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
{
"name": "flow-sum",
"version": "0.0.5",
"description": "Transform stream which returns the summation of streamed numeric data.",
"author": {
"name": "Athan Reines",
"email": "athan@nodeprime.com"
},
"contributors": [
{
"name": "Athan Reines",
"email": "athan@nodeprime.com"
}
],
"scripts": {
"test": "mocha"
},
"main": "./lib",
"repository": {
"type": "git",
"url": "git://github.com/flow-io/flow-sum.git"
},
"keywords": [
"stream",
"writable",
"readable",
"transform",
"through",
"flow",
"flow.io",
"sum",
"reduce",
"statistics",
"stats"
],
"bugs": {
"url": "https://github.com/flow-io/flow-sum/issues"
},
"dependencies": {
"flow-reduce": "~0.0.0"
},
"devDependencies": {
"mocha": "1.x.x",
"chai": "1.x.x",
"stream-spec": "~0.3.5"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
]
}