-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
39 lines (39 loc) · 869 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
{
"name": "bdb",
"version": "1.6.2",
"description": "Database for bcoin",
"keywords": [
"database",
"db",
"leveldb"
],
"license": "MIT",
"repository": "git://github.com/bcoin-org/bdb.git",
"homepage": "https://github.com/bcoin-org/bdb",
"bugs": {
"url": "https://github.com/bcoin-org/bdb/issues"
},
"author": "Christopher Jeffrey <[email protected]>",
"main": "./lib/bdb.js",
"scripts": {
"install": "node-gyp rebuild",
"lint": "eslint lib/ test/",
"lint-types": "tsc -p .",
"test": "bmocha --reporter spec test/*-test.js"
},
"dependencies": {
"bsert": "~0.0.13",
"loady": "~0.0.5"
},
"devDependencies": {
"bmocha": "^2.2.0",
"bts-type-deps": "^0.0.3"
},
"engines": {
"node": ">=12.0.0"
},
"gypfile": true,
"browser": {
"./lib/level": "./lib/level-browser.js"
}
}