forked from Level/rocksdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.05 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
63
64
65
66
67
68
69
70
{
"name": "rocksdb",
"version": "5.2.1",
"description": "A low-level Node.js RocksDB binding",
"license": "MIT",
"main": "leveldown.js",
"scripts": {
"install": "node-gyp-build",
"test": "standard && hallmark && (nyc -s tape test/*-test.js | faucet) && nyc report",
"test-gc": "node --expose-gc test/gc.js",
"test-electron": "electron test/electron.js",
"test-prebuild": "cross-env PREBUILDS_ONLY=1 npm t",
"coverage": "nyc report -r lcovonly",
"rebuild": "npm run install --build-from-source",
"prebuild": "prebuildify -t 8.14.0 --napi --strip",
"prebuild-linux-x64": "prebuildify-cross -i centos7-devtoolset7 -i alpine -t 8.14.0 --napi --strip",
"prebuild-darwin-x64+arm64": "prebuildify -t 8.14.0 --napi --strip --arch x64+arm64",
"prebuild-win32-x64": "prebuildify -t 8.14.0 --napi --strip",
"download-prebuilds": "prebuildify-ci download",
"hallmark": "hallmark fix",
"dependency-check": "dependency-check --no-dev -i napi-macros . test/*.js",
"prepublishOnly": "npm run dependency-check"
},
"dependencies": {
"abstract-leveldown": "^7.2.0",
"napi-macros": "^2.0.0",
"node-gyp-build": "^4.3.0"
},
"devDependencies": {
"async-each": "^1.0.3",
"cross-env": "^7.0.3",
"delayed": "^2.0.0",
"dependency-check": "^4.1.0",
"du": "^1.0.0",
"electron": "^18.0.1",
"faucet": "^0.0.1",
"glob": "^8.0.1",
"hallmark": "^4.0.0",
"level-concat-iterator": "^3.0.0",
"mkfiletree": "^2.0.0",
"node-gyp": "^8.4.1",
"nyc": "^15.0.0",
"prebuildify": "^5.0.0",
"prebuildify-ci": "^1.0.4",
"prebuildify-cross": "^5.0.0",
"readfiletree": "^1.0.0",
"rimraf": "^3.0.0",
"standard": "^16.0.3",
"tape": "^5.0.1",
"tempy": "^1.0.1"
},
"standard": {
"ignore": [
"deps/*"
]
},
"gypfile": true,
"repository": {
"type": "git",
"url": "https://github.com/Level/rocksdb.git"
},
"homepage": "https://github.com/Level/rocksdb",
"keywords": [
"leveldb",
"level"
],
"engines": {
"node": ">=10.12.0"
}
}