-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
34 lines (34 loc) · 1021 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
{
"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 <[email protected]>",
"main": "./lib/bfilter.js",
"scripts": {
"lint": "eslint lib/ test/ || exit 0",
"test": "bmocha --reporter spec test/*-test.js"
},
"dependencies": {
"bcrypto": "git+https://github.com/bcoin-org/bcrypto.git#semver:~5.5.0",
"bsert": "git+https://github.com/chjj/bsert.git#semver:~0.0.10",
"bufio": "git+https://github.com/bcoin-org/bufio.git#semver:~1.0.6",
"loady": "git+https://github.com/chjj/loady.git#semver:~0.0.1"
},
"devDependencies": {
"bmocha": "git+https://github.com/bcoin-org/bmocha.git#semver:^2.1.2"
},
"engines": {
"node": ">=8.0.0"
}
}