UNPKG

@fastify/leveldb

Version:

Plugin to share a common LevelDB connection across Fastify.

85 lines (84 loc) 1.94 kB
{ "name": "@fastify/leveldb", "version": "6.1.0", "description": "Plugin to share a common LevelDB connection across Fastify.", "main": "index.js", "type": "commonjs", "types": "types/index.d.ts", "scripts": { "lint": "eslint", "lint:fix": "eslint --fix", "test": "npm run test:unit && npm run test:typescript", "test:typescript": "tsd", "test:unit": "c8 --100 node --test" }, "repository": { "type": "git", "url": "git+https://github.com/fastify/fastify-leveldb.git" }, "keywords": [ "fastify", "level", "leveldb", "database" ], "author": "Tomas Della Vedova - @delvedor (http://delved.org)", "contributors": [ { "name": "Matteo Collina", "email": "hello@matteocollina.com" }, { "name": "Manuel Spigolon", "email": "behemoth89@gmail.com" }, { "name": "James Sumners", "url": "https://james.sumners.info" }, { "name": "Frazer Smith", "email": "frazer.dev@icloud.com", "url": "https://github.com/fdawgs" } ], "license": "MIT", "bugs": { "url": "https://github.com/fastify/fastify-leveldb/issues" }, "homepage": "https://github.com/fastify/fastify-leveldb#readme", "funding": [ { "type": "github", "url": "https://github.com/sponsors/fastify" }, { "type": "opencollective", "url": "https://opencollective.com/fastify" } ], "dependencies": { "encoding-down": "^7.0.0", "fastify-plugin": "^5.0.0", "leveldown": "^6.0.0", "levelup": "^5.0.0" }, "devDependencies": { "@fastify/pre-commit": "^2.1.0", "@types/levelup": "^5.1.0", "c8": "^10.1.3", "eslint": "^9.17.0", "fastify": "^5.0.0", "memdown": "^6.0.0", "neostandard": "^0.12.0", "rimraf": "^6.0.1", "tsd": "^0.31.0" }, "publishConfig": { "access": "public" }, "pre-commit": [ "lint", "test" ] }