forked from Venemo/node-lmdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 2.21 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
{
"name": "node-lmdb",
"description": "Node binding for LMDB, the Lightning Memory-Mapped Database",
"author": "Timur Kristóf <venemo@fedoraproject.org>",
"contributors": [
"Timur Kristóf",
"Erich Ocean",
"Braydon Fuller",
"Andreas Holstenson (aholstenson)",
"antoinevw",
"b-ono",
"da77a",
"John Hewson (jahewson)",
"Jeffrey Esquivel S. (jeffesquivels)",
"Stefan Thomas (justmoon)",
"Matt-Esch",
"Oliver Zhou (oliverzy)",
"Pascal Berrang (paberr)",
"Raymond Neilson (rneilson)",
"Kris Zyp (kriszyp)"
],
"license": "MIT",
"keywords": [
"lmdb",
"database",
"mdb",
"lightning",
"binding"
],
"repository": "https://github.com/Venemo/node-lmdb",
"version": "0.9.7",
"main": "./index.js",
"scripts": {
"install": "node-gyp-build",
"recompile": "node-gyp build",
"before-publish": "prebuildify-ci download && prebuildify --target 17.1.0 && prebuildify --target 16.13.0 && prebuildify --target 15.5.0 && prebuildify --target 14.17.6 && prebuildify --target 12.22.7 && prebuildify --target electron@15.2.0",
"prebuild": "prebuildify --target 17.1.0 && prebuildify --target 16.13.0 && prebuildify --target 15.5.0 && prebuildify --target 14.17.6 && prebuildify --target 12.22.7 && prebuildify --target electron@15.2.0",
"prebuild-musl": "prebuildify --target 17.1.0 --libc musl --tag-libc && prebuildify --target 16.13.0 --libc musl --tag-libc && prebuildify --target 14.17.6 --libc musl --tag-libc && prebuildify --target 12.22.7 --libc musl --tag-libc",
"prebuild-arm64": "prebuildify --arch=arm64 --target 17.1.0 --libc musl && prebuildify --arch=arm64 --target 16.13.0 && prebuildify --arch=arm64 --target 14.17.6 && prebuildify --arch=arm64 --target electron@15.2.0",
"test": "./node_modules/.bin/mocha test/**.test.js --recursive",
"benchmark": "node ./benchmark/index.js"
},
"gypfile": true,
"dependencies": {
"nan": "^2.14.1",
"node-gyp-build": "^4.2.3"
},
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"mkdirp": "^1.0.4",
"mocha": "^8.1.3",
"node-gyp": "^7.1.0",
"prebuildify": "^5.0.0",
"prebuildify-ci": "^1.0.5",
"rimraf": "^3.0.2",
"jshint": "^2.12.0"
}
}