@rmw/mdbx
Version:
Simple, efficient, scalable data store wrapper for libmdbx
59 lines (58 loc) • 1.37 kB
JSON
{
"name": "@rmw/mdbx",
"author": "Kris Zyp",
"version": "0.2.3",
"description": "Simple, efficient, scalable data store wrapper for libmdbx",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gcxfd/lmdbx-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.15.0",
"node-gyp-build": "^4.3.0",
"weak-lru-cache": "^1.1.3"
},
"optionalDependencies": {
"msgpackr": "^1.5.0"
},
"devDependencies": {
"@types/node": "latest",
"benchmark": "^2.1.4",
"chai": "^4.3.4",
"jshint": "^2.13.1",
"fs-extra": "^10.0.0",
"mocha": "^9.1.3",
"node-gyp": "^8.4.0",
"rimraf": "^3.0.2",
"tsd": "^0.18.0"
}
}