forked from Callidon/bloom-filters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.62 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "bloom-filters",
"version": "1.3.2",
"description": "JS implementation of probabilistic data structures: Bloom Filter (and its derived), HyperLogLog, Count-Min Sketch, Top-K and MinHash",
"main": "dist/api.js",
"scripts": {
"build": "tsc",
"pretest": "yarn build",
"test": "mocha test/**/*-test.js --trace-deprecation --timeout=30000",
"doc": "typedoc --mode file --out docs/ --ignoreCompilerErrors"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Callidon/bloom-filters.git"
},
"keywords": [
"bloom",
"filter",
"bloom filter",
"invertible bloom filter",
"probabilistic",
"datastructure",
"count min sketch",
"cuckoo"
],
"author": "Thomas Minier <thomas.minier@protonmail.com>",
"contributors": [
"Arnaud Grall <dev.arnaudgrall@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Callidon/bloom-filters/issues"
},
"homepage": "https://github.com/Callidon/bloom-filters#readme",
"devDependencies": {
"@types/lodash": "^4.14.149",
"@types/lodash.eq": "^4.0.6",
"@types/lodash.indexof": "^4.0.6",
"@types/node": "^13.7.0",
"@types/seedrandom": "^2.4.28",
"@types/xxhashjs": "^0.2.1",
"chai": "^4.2.0",
"mocha": "^6.2.2",
"random": "^2.1.1",
"typedoc": "^0.15.0",
"typescript": "^3.7.5"
},
"dependencies": {
"is-buffer": "^2.0.4",
"lodash": "^4.17.15",
"lodash.eq": "^4.0.0",
"lodash.indexof": "^4.0.5",
"reflect-metadata": "^0.1.13",
"seedrandom": "^3.0.5",
"xxhashjs": "^0.2.2"
},
"standard": {
"env": [
"mocha"
]
}
}