forked from bcoin-org/bfilter
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 745 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 745 Bytes
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
{
"name": "bfilter",
"version": "2.3.0",
"description": "Bloom filters for javascript",
"keywords": [
"bloom",
"filter",
"murmur3"
],
"license": "MIT",
"repository": "git://github.com/bcoin-org/bfilter.git",
"homepage": "https://github.com/bcoin-org/bfilter",
"bugs": {
"url": "https://github.com/bcoin-org/bfilter/issues"
},
"author": "Christopher Jeffrey <chjjeffrey@gmail.com>",
"main": "./lib/bfilter.js",
"scripts": {
"lint": "eslint lib/ test/",
"test": "bmocha --reporter spec test/*-test.js"
},
"dependencies": {
"bcrypto": "~5.4.0",
"bsert": "~0.0.12",
"bufio": "~1.2.1"
},
"devDependencies": {
"bmocha": "^2.1.8"
},
"engines": {
"node": ">=8.0.0"
}
}