{
  "name": "lowdb-cjs-hybrid",
  "version": "2.1.0",
  "description": "Tiny local JSON database for Node, Electron and the browser",
  "main": "./lib/cjs/index.js",
  "module": "./lib/esm/index.js",
  "type": "module",
  "exports": {
    "import": "./lib/esm/index.js",
    "require": "./lib/cjs/index.js"
  },
  "files": [
    "lib",
    "LICENSE-MIT",
    "LICENSE-PARITY",
    "LICENSE-PATRON"
  ],
  "scripts": {
    "test": "ava",
    "lint": "eslint src --ext .ts --ignore-path .gitignore",
    "build": "del-cli lib && concurrently npm:build:* && ./scripts/hybrid.sh",
    "build:cjs": "tsc -p tsconfig.cjs.json",
    "build:esm": "tsc -p tsconfig.esm.json",
    "build:types": "tsc -p tsconfig.types.json",
    "prepublishOnly": "npm run build",
    "postversion": "git push && git push --tags && npm publish",
    "prepare": "husky install"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/typicode/lowdb.git"
  },
  "keywords": [
    "database",
    "electron",
    "embed",
    "embedded",
    "flat",
    "JSON",
    "local",
    "localStorage"
  ],
  "author": "Typicode <typicode@gmail.com>",
  "license": "Parity-7.0.0 AND MIT WITH Patron-1.0.0",
  "bugs": {
    "url": "https://github.com/typicode/lowdb/issues"
  },
  "homepage": "https://github.com/typicode/lowdb#readme",
  "devDependencies": {
    "@commitlint/cli": "^12.0.1",
    "@commitlint/config-conventional": "^12.0.1",
    "@commitlint/prompt-cli": "^12.0.1",
    "@tsconfig/node12": "^1.0.7",
    "@types/lodash": "^4.14.168",
    "@types/node": "^15.0.3",
    "@typicode/eslint-config": "^0.1.0",
    "ava": "^3.15.0",
    "concurrently": "^6.2.0",
    "del-cli": "^3.0.1",
    "husky": "^6.0.0",
    "lodash": "^4.17.21",
    "tempy": "^1.0.1",
    "ts-node": "^9.1.1",
    "typescript": "^4.2.3"
  },
  "dependencies": {
    "steno": "^1.0.0"
  },
  "engines": {
    "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  },
  "types": "lib/types/index.d.ts",
  "ava": {
    "extensions": {
      "ts": "module"
    },
    "nonSemVerExperiments": {
      "configurableModuleFormat": true
    },
    "nodeArguments": [
      "--loader=ts-node/esm"
    ]
  }
}