-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
36 lines (36 loc) · 843 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
{
"name": "tdigest",
"version": "0.1.2",
"description": "javascript implementation of Dunning's T-Digest for streaming quantile approximation",
"main": "tdigest.js",
"scripts": {
"test": "mocha specs"
},
"repository": {
"type": "git",
"url": "https://github.com/welch/tdigest.git"
},
"keywords": [
"tdigest",
"percentile",
"quantile",
"histogram",
"approximation"
],
"author": "Will Welch <[email protected]> (http://quietplease.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/welch/tdigest/issues"
},
"homepage": "https://github.com/welch/tdigest",
"dependencies": {
"bintrees": "1.0.2"
},
"devDependencies": {
"better-assert": "^1.0.2",
"chai": "^3.0.0",
"grunt": "^0.4.5",
"grunt-pure-cjs": "^1.4.0",
"mocha": "^2.1.0"
}
}