{
  "name": "glitch-db",
  "version": "0.17.0",
  "description": "A simple, file based key-value database",
  "main": "./lib/src/index.js",
  "exports": "./lib/src/index.js",
  "types": "./typings/src/index.d.ts",
  "type": "commonjs",
  "files": [
    "src/*",
    "lib/src/*",
    "typings/src/*"
  ],
  "engines": {
    "node": ">=16"
  },
  "scripts": {
    "prettier": "prettier --ignore-path .gitignore --write .",
    "lint": "eslint --ignore-path .gitignore .",
    "build": "npm run lint && tsc",
    "test": "npm run build && node lib/test/all.test.js",
    "coverage": "nyc --reporter=lcov --reporter=text-summary npm run test",
    "coverage-codecov": "npm run coverage && codecov",
    "prepare": "husky install"
  },
  "lint-staged": {
    "**/*": "npm run prettier"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/subramanian-elavathur/glitch-db.git"
  },
  "keywords": [
    "glitch",
    "db",
    "database",
    "file",
    "simple",
    "local"
  ],
  "author": "Subramanian Elavathur",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/subramanian-elavathur/glitch-db/issues"
  },
  "homepage": "https://github.com/subramanian-elavathur/glitch-db#readme",
  "devDependencies": {
    "@types/lru-cache": "^5.1.1",
    "@types/node": "^17.0.0",
    "@types/tar": "^6.1.0",
    "@typescript-eslint/eslint-plugin": "^5.3.0",
    "@typescript-eslint/parser": "^5.3.0",
    "codecov": "^3.8.3",
    "eslint": "^8.1.0",
    "eslint-config-prettier": "^8.3.0",
    "good-vibes": "^1.1.2",
    "husky": "^8.0.1",
    "lint-staged": "^12.0.2",
    "nyc": "^15.1.0",
    "prettier": "2.5.1",
    "typescript": "^4.3.5"
  },
  "dependencies": {
    "lodash.get": "^4.4.2",
    "lru-cache": "^6.0.0",
    "tar": "^6.1.11"
  }
}
