-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 839 Bytes
/
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
{
"name": "sample-distribution",
"type": "module",
"main": "./index.js",
"browser": "./index.js",
"version": "1.8.0",
"description": "small minimal quantile and CDF estimator for multiple large data streams",
"keywords": [
"stats",
"statistics",
"distribution",
"cdf",
"empirical distribution function",
"empirical cdf",
"quantiles",
"median",
"quartile",
"percentile",
"percentiles",
"t-digest",
"h-digest",
"q-digest",
"monte-carlo"
],
"author": "Hugo Villeneuve",
"devDependencies": {
"assert-op": "^1.2.0",
"norm-dist": "^3.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/hville/sample-distribution.git"
},
"scripts": {
"test": "node ./tst/test.js",
"prepublishOnly": "npm test"
},
"license": "MIT"
}