-
-
Notifications
You must be signed in to change notification settings - Fork 177
/
package.json
73 lines (73 loc) · 2.48 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
71
72
73
{
"name": "leveldown",
"version": "5.4.1",
"description": "A low-level Node.js LevelDB binding",
"license": "MIT",
"main": "leveldown.js",
"scripts": {
"install": "node-gyp-build",
"test": "standard && (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 --reporter=text-lcov | coveralls",
"rebuild": "npm run install --build-from-source",
"prebuild": "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 bench/*.js",
"prepublishOnly": "npm run dependency-check",
"prebuild-arm": "npm run prebuild-linux-armv7 && npm run prebuild-linux-arm64 && npm run prebuild-android-armv7 && npm run prebuild-android-arm64",
"prebuild-linux-armv7": "IMAGE=linux-armv7 ./scripts/cross-compile --tag-armv",
"prebuild-linux-arm64": "IMAGE=linux-arm64 ./scripts/cross-compile --tag-armv",
"prebuild-android-armv7": "IMAGE=android-armv7 ./scripts/cross-compile --tag-armv",
"prebuild-android-arm64": "IMAGE=android-arm64 ./scripts/cross-compile --tag-armv",
"prebuild-alpine": "IMAGE=alpine ./scripts/cross-compile --tag-libc",
"prebuild-centos7": "IMAGE=centos7-devtoolset7 ./scripts/cross-compile"
},
"dependencies": {
"abstract-leveldown": "~6.2.1",
"napi-macros": "~2.0.0",
"node-gyp-build": "~4.1.0"
},
"devDependencies": {
"async-each": "^1.0.3",
"coveralls": "^3.0.2",
"cross-env": "^6.0.0",
"delayed": "^2.0.0",
"dependency-check": "^4.1.0",
"du": "^1.0.0",
"electron": "^6.0.12",
"faucet": "^0.0.1",
"glob": "^7.1.3",
"hallmark": "^2.0.0",
"level-community": "^3.0.0",
"level-concat-iterator": "^2.0.0",
"mkfiletree": "^2.0.0",
"node-gyp": "^6.0.0",
"nyc": "^14.0.0",
"prebuildify": "^3.0.0",
"prebuildify-ci": "^1.0.4",
"readfiletree": "^1.0.0",
"rimraf": "^3.0.0",
"standard": "^14.0.0",
"tape": "^4.10.0",
"tempy": "^0.3.0"
},
"hallmark": {
"community": "level-community"
},
"gypfile": true,
"repository": {
"type": "git",
"url": "https://github.com/Level/leveldown.git"
},
"homepage": "https://github.com/Level/leveldown",
"keywords": [
"leveldb",
"level"
],
"engines": {
"node": ">=8.6.0"
}
}