This repository has been archived by the owner on Dec 20, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.71 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": "leveldown-hyper",
"version": "2.0.0",
"description": "A Node.js LevelDB binding, primary backend for LevelUP (HyperDex fork)",
"license": "MIT",
"main": "leveldown-hyper.js",
"scripts": {
"install": "prebuild-install || node-gyp rebuild",
"test": "standard && hallmark && (nyc -s tape test/*-test.js | faucet) && nyc report && prebuild-ci",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"rebuild": "node-gyp rebuild",
"prebuild": "prebuild --all --verbose --strip",
"hallmark": "hallmark --fix",
"dependency-check": "dependency-check . test/*.js bench/*.js",
"prepublishOnly": "npm run dependency-check"
},
"dependencies": {
"abstract-leveldown": "~5.0.0",
"bindings": "~1.5.0",
"fast-future": "~1.0.0",
"nan": "^2.6.2",
"prebuild-install": "^5.0.0"
},
"devDependencies": {
"coveralls": "^3.0.2",
"dependency-check": "^3.3.0",
"du": "^1.0.0",
"faucet": "^0.0.1",
"hallmark": "^2.0.0",
"iota-array": "^1.0.0",
"level-community": "^3.0.0",
"lexicographic-integer": "^1.1.0",
"mkfiletree": "^2.0.0",
"monotonic-timestamp": "~0.0.8",
"node-uuid": "^1.4.3",
"nyc": "^14.0.0",
"optimist": "~0.6.1",
"prebuild": "^9.0.0",
"prebuild-ci": "^3.0.0",
"readfiletree": "^1.0.0",
"rimraf": "^3.0.0",
"slump": "^3.0.0",
"standard": "^14.0.0",
"tape": "^4.9.0"
},
"hallmark": {
"community": "level-community"
},
"gypfile": true,
"repository": {
"type": "git",
"url": "https://github.com/Level/leveldown-hyper.git"
},
"homepage": "https://github.com/Level/leveldown-hyper",
"keywords": [
"leveldb",
"level"
],
"engines": {
"node": ">=6"
}
}