-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.17 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.17 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
{
"name": "flow-pcc",
"version": "0.0.3",
"description": "Reduce transform stream which calculates the Pearson product-moment correlation coefficient matrix 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-pcc.git"
},
"keywords": [
"stream",
"writable",
"readable",
"transform",
"flow",
"flow.io",
"covariance",
"correlation",
"linear correlation",
"pearson product moment correlation coefficient",
"variance",
"multivariate",
"reduce",
"statistics",
"stats"
],
"bugs": {
"url": "https://github.com/flow-io/flow-pcc/issues"
},
"dependencies": {
"stream-combiner": "~0.2.0",
"flow-reduce": "0.0.0",
"flow-map": "0.0.0"
},
"devDependencies": {
"mocha": "1.x.x",
"chai": "1.x.x"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
]
}