{
  "name": "lounge",
  "description": "Simple Mongoose-inspired ODM for Couchbase",
  "version": "0.27.0",
  "homepage": "https://github.com/bojand/lounge",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git://github.com/bojand/lounge.git"
  },
  "bugs": {
    "url": "http://github.com/bojand/lounge/issues"
  },
  "engines": {
    "node": ">=6.0.0"
  },
  "main": "index.js",
  "author": {
    "name": "Bojan Djurkovic <dbojan@gmail.com>"
  },
  "scripts": {
    "test": "npm run test-mocha && npm run test-ava",
    "test-mocha": "LOUNGE_COUCHBASE_MOCK=true mocha --exit test/*.spec.js",
    "test-ava": "LOUNGE_COUCHBASE_MOCK=true ava -v -s",
    "cover": "LOUNGE_COUCHBASE_MOCK=true nyc npm run test",
    "docs:api": "echo '# API Reference\\n' > docs/api/readme.md && jsdoc2md lib/*.js >> docs/api/readme.md",
    "docs:dev": "vuepress dev docs",
    "docs:build": "npm run docs:api && vuepress build docs"
  },
  "dependencies": {
    "async": "^3.0.1",
    "clone": "^2.1.2",
    "couchbase-driver": "^0.5.1",
    "debug": "^4.0.0",
    "escape-string-regexp": "^2.0.0",
    "grappling-hook-lounge": "~1.0.0",
    "inflection": "^1.8.0",
    "lodash": "^4.17.11",
    "memoizee": "^0.4.14",
    "mpath": "^0.6.0",
    "traverse": "^0.6.6",
    "uuid": "^3.3.2",
    "with-callback": "^1.0.2"
  },
  "peerDependencies": {
    "couchbase": "^2.4.0"
  },
  "devDependencies": {
    "ava": "^2.1.0",
    "benchmark": "^2.1.4",
    "chai": "^4.2.0",
    "couchbase": "^2.6.0",
    "jsdoc-to-markdown": "^5.0.0",
    "lodash3": "~3.10.0",
    "markdown-it-highlightjs": "^3.0.0",
    "marky": "^1.2.0",
    "mocha": "^6.0.2",
    "nyc": "^14.1.1",
    "standard": "^12.0.0",
    "validator": "^11.0.0",
    "vuepress": "^1.0.1"
  },
  "ava": {
    "files": [
      "test/*.test.js"
    ]
  },
  "directories": {
    "test": "test"
  },
  "standard": {
    "globals": [
      "describe",
      "expect",
      "it"
    ]
  },
  "keywords": [
    "couchbase",
    "document",
    "model",
    "schema",
    "database",
    "odm",
    "data",
    "datastore",
    "query",
    "nosql",
    "orm",
    "db"
  ],
  "config": {
    "nyc": {
      "include": [
        "lib/*.js"
      ]
    }
  }
}
