meyfa/giantdb-crypto

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "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": "5.1.0",
    "@types/mocha": "10.0.6",
    "@types/node": "20.12.2",
    "c8": "9.1.0",
    "eslint": "8.57.0",
    "eslint-plugin-jsdoc": "48.2.2",
    "giantdb": "4.0.3",
    "mocha": "10.4.0",
    "ts-node": "10.9.2",
    "typescript": "5.4.5"
  }
}