{
  "name": "nohm",
  "version": "3.0.0",
  "description": "redis ORM (Object relational mapper)",
  "license": "MIT",
  "engines": {
    "node": ">=8"
  },
  "main": "./tsOut/index.js",
  "directories": {
    "lib": "./ts"
  },
  "keywords": [
    "redis",
    "orm",
    "database",
    "pubsub",
    "typescript",
    "odm"
  ],
  "types": "./tsOut/index.d.ts",
  "files": [
    "docs/index.md",
    "ts/",
    "tsOut/",
    "CHANGELOG.md",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "test": "nyc ava --timeout=20s",
    "test:watch": "ava --watch --timeout=5s",
    "coverage:failIfLow": "nyc check-coverage --lines 90 --functions 90 --branches 80",
    "coverage:coveralls": "nyc report --reporter=text-lcov | coveralls",
    "lint": "tslint --project ./ && eslint test/ ts/universalValidators.js",
    "lint:auto-fix": "tslint--project ./ --fix",
    "prebuild": "rimraf tsOut/",
    "build": "npm run lint && tsc --project ./",
    "build:watch": "tsc --project ./ --watch --pretty",
    "predev": "npm run build",
    "dev": "concurrently --names build,test -k \"npm run build:watch\" \"npm run test:watch\" -c cyan,blue --handle-input",
    "prepublishOnly": "npm run build && npm run test && pkg-ok",
    "generateDocs": "rimraf docs/api/ && jsdoc -c jsdoc.json",
    "prerelease": "npm run generateDocs",
    "release": "git add docs/api/ && standard-version -a"
  },
  "dependencies": {
    "debug": "^4.3.3",
    "ioredis": "^4.28.5",
    "lodash": "^4.17.11",
    "redis": "^3.0.2",
    "traverse": "^0.6.6",
    "uuid": "^8.3.2"
  },
  "devDependencies": {
    "@abraham/pkg-ok": "^3.0.0-next.2",
    "@types/debug": "^4.1.7",
    "@types/express": "^4.17.13",
    "@types/ioredis": "^4.28.8",
    "@types/lodash": "^4.14.179",
    "@types/node": "<=14.15.0",
    "@types/redis": "^2.8.28",
    "@types/traverse": "^0.6.32",
    "@types/uuid": "^8.3.4",
    "ava": "^4.0.1",
    "concurrently": "^7.0.0",
    "coveralls": "^3.1.1",
    "docdash": "^1.2.0",
    "eslint": "^8.10.0",
    "jsdoc": "^3.6.10",
    "nodemon": "^2.0.15",
    "nyc": "^15.1.0",
    "rimraf": "^3.0.2",
    "standard-version": "^9.3.2",
    "testdouble": "^3.16.4",
    "ts-node": "^10.5.0",
    "tslint": "^6.1.3",
    "typescript": "3.4.5"
  },
  "author": "Moritz Peters",
  "repository": {
    "type": "git",
    "url": "https://github.com/maritz/nohm.git"
  },
  "bugs": {
    "url": "https://github.com/maritz/nohm/issues"
  },
  "contributors": [
    {
      "name": "Pier Paolo Ramon",
      "url": "https://github.com/yuchi"
    }
  ],
  "ava": {
    "extensions": [
      "ts"
    ],
    "files": [
      "test/*.test.ts",
      "ts/typescript.test.ts"
    ],
    "require": [
      "ts-node/register/transpile-only"
    ]
  },
  "standard-version": {
    "types": [
      {
        "type": "feat",
        "section": "Features"
      },
      {
        "type": "fix",
        "section": "Bug Fixes"
      },
      {
        "type": "chore",
        "section": "Other"
      },
      {
        "type": "docs",
        "hidden": true
      },
      {
        "type": "style",
        "hidden": true
      },
      {
        "type": "refactor",
        "hidden": true
      },
      {
        "type": "perf",
        "section": "Other"
      },
      {
        "type": "test",
        "hidden": true
      }
    ]
  }
}
