UNPKG

giantdb

Version:

Large object database in native JavaScript, with encryption support

58 lines (57 loc) 1.53 kB
{ "name": "giantdb", "version": "4.0.3", "description": "Large object database in native JavaScript, with encryption support", "type": "commonjs", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist" ], "scripts": { "build": "node -e \"fs.rmSync('./dist',{force:true,recursive:true})\" && tsc", "lint": "tsc --noEmit -p tsconfig.lint.json && eslint --ignore-path .gitignore .", "lint-fix": "tsc --noEmit -p tsconfig.lint.json && eslint --fix --ignore-path .gitignore .", "test": "mocha --require ts-node/register --recursive \"test/**/*.test.*\"", "coverage": "c8 --reporter=text --reporter=lcov --all --src=src npm test", "prepack": "npm run build" }, "repository": { "type": "git", "url": "git+https://github.com/meyfa/giantdb.git" }, "keywords": [ "object", "storage", "store", "database", "file", "encryption", "large", "native" ], "author": "Fabian Meyer", "license": "MIT", "bugs": { "url": "https://github.com/meyfa/giantdb/issues" }, "homepage": "https://github.com/meyfa/giantdb", "engines": { "node": ">=18.16.1" }, "devDependencies": { "@meyfa/eslint-config": "5.0.0", "@types/mocha": "10.0.1", "@types/node": "18.17.17", "c8": "8.0.0", "eslint": "8.49.0", "eslint-plugin-jsdoc": "46.8.1", "mocha": "10.2.0", "ts-node": "10.9.1", "typescript": "5.2.2" }, "dependencies": { "fs-adapters": "^7.0.1", "writable-wrapper": "^4.0.1" } }