-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.29 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
{
"name": "online-stats",
"version": "1.5.0",
"description": "Online algorithms for data exploration and analysis (piece-by-piece)",
"main": "index.js",
"dependencies": {
"online-autocorrelation": "0.0.1",
"online-autocovariance": "^0.0.1",
"online-count": "^0.0.2",
"online-covariance": "^1.0.2",
"online-group": "^0.0.1",
"online-histogram": "0.0.4",
"online-lag": "^0.0.3",
"online-linear-regression": "^1.0.0",
"online-max": "^1.0.1",
"online-mean": "^1.1.2",
"online-median": "^1.0.3",
"online-min": "^1.0.2",
"online-series": "^0.0.3",
"online-std": "^1.0.2",
"online-variance": "^1.0.2"
},
"devDependencies": {
"faucet": "0.0.1",
"tape": "^4.9.1"
},
"scripts": {
"test": "tape test.js | faucet"
},
"repository": {
"type": "git",
"url": "git+https://github.com/onlinestats/online-stats.git"
},
"keywords": [
"statistics", "exploratory analysis", "online algorithm",
"autocorrelation", "autocovariance", "covariance",
"histogram", "lag", "regression", "mean", "median",
"std", "variance"
],
"author": "Anton Zemlyansky",
"license": "ISC",
"bugs": {
"url": "https://github.com/onlinestats/online-stats/issues"
},
"homepage": "https://github.com/onlinestats/online-stats#readme"
}