forked from kriszyp/lmdb-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.34 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
{
"name": "@rmw/mdbx",
"author": "Kris Zyp",
"version": "0.2.0",
"description": "Simple, efficient, scalable data store wrapper for libmdbx",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gcxfd/lmdb-store.git"
},
"keywords": [
"lmdb",
"libmdbx",
"database",
"mdb",
"lightning"
],
"type": "commonjs",
"main": "./index.js",
"exports": {
"import": "./index.mjs",
"require": "./index.js"
},
"types": "./index.d.ts",
"tsd": {
"directory": "test/types"
},
"scripts": {
"install": "node-gyp-build",
"recompile": "node-gyp build",
"test": "./node_modules/.bin/mocha test/**.test.js --recursive && npm run test:types",
"test2": "./node_modules/.bin/mocha tests -u tdd",
"test:types": "tsd",
"benchmark": "node ./benchmark/index.js",
"benchmark-ll": "node ./benchmark/low-level.js"
},
"gypfile": true,
"dependencies": {
"mkdirp": "^1.0.4",
"nan": "^2.14.2",
"node-gyp-build": "^4.2.3",
"weak-lru-cache": "^0.4.1"
},
"optionalDependencies": {
"msgpackr": "^1.2.6"
},
"devDependencies": {
"@types/node": "latest",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"jshint": "^2.12.0",
"fs-extra": "^9.0.1",
"mocha": "^8.1.3",
"node-gyp": "^7.1.0",
"rimraf": "^3.0.2",
"tsd": "^0.13.1"
}
}