-
Notifications
You must be signed in to change notification settings - Fork 72
/
package.json
61 lines (61 loc) · 2.13 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
{
"name": "node-lmdb",
"description": "Node binding for LMDB, the Lightning Memory-Mapped Database",
"author": "Timur Kristóf <[email protected]>",
"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.10.1",
"main": "./index.js",
"scripts": {
"install": "node-gyp-build",
"recompile": "node-gyp build",
"before-publish": "prebuildify-ci download && prebuildify -t 20.0.0 -t 18.0.0 -t 17.1.0 -t 16.13.0 -t 15.5.0 -t 14.17.6 -t 12.22.7 -t [email protected]",
"prebuild": "prebuildify -t 20.0.0 -t 18.0.0 -t 17.1.0 -t 16.13.0 -t 15.5.0 -t 14.17.6 -t 12.22.7 -t [email protected]",
"prebuild-linux-x64": "prebuildify-cross -i centos7-devtoolset7 -i alpine -t 20.0.0 -t 18.0.0 -t 17.1.0 -t 16.13.0 -t 15.5.0 -t 14.17.6 -t 12.22.7 -t [email protected]",
"prebuild-linux-arm64-glibc": "prebuildify-cross --tag-libc -i linux-arm64-lts -t 20.0.0 -t 18.0.0 -t 17.1.0 -t 16.13.0 -t 15.5.0 -t 14.17.6 -t 12.22.7 -t [email protected]",
"prebuild-linux-arm64-musl": "prebuildify-cross --libc musl --tag-libc -i linux-arm64-musl -t 20.0.0 -t 18.0.0 -t 17.1.0 -t 16.13.0 -t 15.5.0 -t 14.17.6 -t 12.22.7 -t [email protected]",
"test": "mocha test/**.test.js --recursive",
"benchmark": "node ./benchmark/index.js"
},
"gypfile": true,
"dependencies": {
"nan": "^2.19.0",
"node-gyp-build": "^4.8.1"
},
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"mkdirp": "^1.0.4",
"mocha": "^8.1.3",
"node-gyp": "^10.1.0",
"prebuildify": "^6.0.1",
"prebuildify-ci": "^1.0.5",
"prebuildify-cross": "^5.0.0",
"rimraf": "^3.0.2",
"jshint": "^2.12.0"
}
}