forked from ascii766164696D/loglog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 860 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
40
41
42
43
44
45
46
{
"author": "mattbornski",
"name": "cardinality",
"description": "Set cardinality estimates using HyperLogLog implementation",
"version": "0.0.3",
"main": "lib/index.js",
"directories" : {
"lib": "lib",
"test": "test"
},
"homepage": "https://github.com/mattbornski/cardinality",
"keywords": [
"log",
"loglog",
"hyper",
"hyperloglog",
"cardinality",
"estimate",
"estimation",
"algorithm",
"set",
"flajolet",
"durand",
"gandouet",
"jean-marie",
"fusy",
"meunier"
],
"dependencies": {
"bit-array": "0.1.3",
"murmurhash3": "0.0.9"
},
"repository": {
"type": "git",
"url": "https://github.com/mattbornski/cardinality.git"
},
"engines": {
"node": ">= 0.6"
},
"devDependencies": {
"mocha": "1.x"
},
"scripts": {
"test": "mocha"
}
}