-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1 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
{
"name": "flow-csum",
"version": "0.0.1",
"description": "Transform stream factory to calculate the cumulative sum of a numeric data stream.",
"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-csum.git"
},
"keywords": [
"stream",
"writable",
"readable",
"transform",
"through",
"flow",
"flow.io",
"sum",
"cumulative sum",
"cumsum",
"statistics",
"stats"
],
"bugs": {
"url": "https://github.com/flow-io/flow-csum/issues"
},
"dependencies": {
"through": "~2.3.4"
},
"devDependencies": {
"mocha": "1.x.x",
"chai": "1.x.x",
"event-stream": "~3.1.5"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
]
}