package.json
{
"name": "giantdb-crypto",
"version": "4.0.2",
"description": "GiantDB middleware for object encryption",
"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-crypto.git"
},
"keywords": [
"giantdb",
"object",
"storage",
"store",
"encryption",
"crypto",
"aes",
"security",
"middleware"
],
"author": "Fabian Meyer",
"license": "MIT",
"bugs": {
"url": "https://github.com/meyfa/giantdb-crypto/issues"
},
"homepage": "https://github.com/meyfa/giantdb-crypto",
"engines": {
"node": ">=18.16.1"
},
"peerDependencies": {
"giantdb": "^4.0.0"
},
"devDependencies": {
"@meyfa/eslint-config": "7.0.0",
"@types/mocha": "10.0.9",
"@types/node": "22.9.0",
"c8": "10.1.2",
"eslint": "8.57.1",
"giantdb": "4.0.3",
"mocha": "10.7.3",
"ts-node": "10.9.2",
"typescript": "5.6.3"
}
}