-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.66 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.66 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "flow.io",
"version": "1.22.0",
"description": "Collection of Node.js streams",
"author": {
"name": "Athan Reines",
"email": "athan@nodeprime.com"
},
"contributors": [
{
"name": "Athan Reines",
"email": "athan@nodeprime.com"
}
],
"scripts": {
"test": "./node_modules/.bin/mocha",
"test-cov": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --dir ./reports/coverage -- -R spec",
"coveralls": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --dir ./reports/coveralls/coverage --report lcovonly -- -R spec && cat ./reports/coveralls/coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./reports/coveralls"
},
"main": "./lib",
"repository": {
"type": "git",
"url": "git://github.com/flow-io/flow.io.git"
},
"keywords": [
"streams",
"json",
"statistics",
"stats",
"flow",
"computation"
],
"bugs": {
"url": "https://github.com/flow-io/flow.io/issues"
},
"dependencies": {
"JSONStream": "~0.7.3",
"event-stream": "~3.1.5",
"flow-abs": "~0.0.0",
"flow-add": "~0.0.0",
"flow-array": "~0.0.0",
"flow-ceil": "~0.0.0",
"flow-chunkify": "~0.0.0",
"flow-cmean": "~0.0.0",
"flow-count": "~0.0.0",
"flow-covariance": "~0.0.0",
"flow-csum": "~0.0.0",
"flow-diff": "0.0.0",
"flow-divide": "0.0.0",
"flow-exp": "~0.0.0",
"flow-find": "~0.0.0",
"flow-floor": "~0.0.0",
"flow-histc": "~0.0.0",
"flow-iqr": "~0.0.0",
"flow-kurtosis": "^1.0.0",
"flow-map": "~0.0.0",
"flow-max": "~0.0.0",
"flow-mean": "~0.0.0",
"flow-median": "~0.0.0",
"flow-min": "~0.0.0",
"flow-mmax": "~0.0.0",
"flow-mmean": "~0.0.0",
"flow-mmin": "~0.0.0",
"flow-mock-read": "^1.0.0",
"flow-mock-write": "^1.0.0",
"flow-msum": "~0.0.0",
"flow-multiply": "^1.0.0",
"flow-nans": "~0.0.0",
"flow-parse": "~0.0.0",
"flow-pcc": "~0.0.0",
"flow-pow": "~0.0.0",
"flow-quantiles": "~0.0.0",
"flow-read": "~0.0.0",
"flow-reduce": "~0.0.0",
"flow-round": "~0.0.0",
"flow-sink-and-stream": "~0.0.0",
"flow-skewness": "^1.0.0",
"flow-stringify": "~0.0.0",
"flow-subtract": "~0.0.0",
"flow-sum": "~0.0.0",
"flow-variance": "~0.0.0",
"flow-write": "~0.0.0",
"graceful-fs": "~3.0.2",
"stream-combiner": "~0.2.0",
"through2": "~0.6.2",
"through": "~2.3.4"
},
"devDependencies": {
"chai": "1.x.x",
"coveralls": "^2.11.1",
"istanbul": "^0.3.2",
"mocha": "1.x.x",
"split": "~0.3.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
]
}