{
  "name": "lambda-pouch",
  "version": "1.0.3",
  "description": "Script API runtime on top of PouchDB",
  "author": "Mike Bild <mike.bild@gmail.com>",
  "license": "MIT",
  "homepage": "https://github.com/MikeBild/lambda-pouch#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/MikeBild/lambda-pouch.git"
  },
  "bugs": {
    "url": "https://github.com/MikeBild/lambda-pouch/issues"
  },
  "main": "index.js",
  "bin": {
    "lambda-pouch": "./bin/lambda-pouch",
    "lambda": "./bin/lambda-pouch"
  },
  "scripts": {
    "start": "./bin/lambda-pouch",
    "dev": "concurrently --kill-others --raw \"mocha -w -c -b\" \"nodemon ./bin/lambda-pouch\"",
    "test": "mocha -w -c -b",
    "lint": "eslint --quiet lib bin test || true"
  },
  "keywords": [
    "pouchdb",
    "serverless",
    "lambda",
    "function"
  ],
  "dependencies": {
    "body-parser": "^1.16.0",
    "commander": "^2.9.0",
    "cors": "^2.8.0",
    "debug": "^2.6.0",
    "eslint": "^3.14.1",
    "express": "^4.14.0",
    "express-jwt": "^3.4.0",
    "jsonwebtoken": "^7.2.1",
    "lodash": "^4.17.4",
    "node-cron": "^1.1.2",
    "node-fetch": "^1.6.3",
    "node-uuid": "^1.4.7",
    "paint-console": "0.0.1",
    "parse-data-url": "^0.1.4",
    "pouchdb": "^6.1.1",
    "pouchdb-adapter-node-websql": "^6.1.1",
    "pouchdb-core": "^6.1.1",
    "pouchdb-express-router": "0.0.9",
    "pouchdb-find": "^0.10.4",
    "response-time": "^2.3.2"
  },
  "devDependencies": {
    "concurrently": "^3.1.0",
    "eslint": "^3.2.0",
    "eslint-config-default": "^0.2.1",
    "eslint-config-defaults": "^9.0.0",
    "mocha": "^2.5.3",
    "nodemon": "^1.11.0"
  },
  "eslintConfig": {
    "env": {
      "node": true
    },
    "rules": {
      "semi": [
        "error",
        "always"
      ],
      "comma-dangle": [
        "off"
      ],
      "space-before-function-paren": [
        "off"
      ],
      "no-unused-vars": [
        "error",
        {
          "args": "none"
        }
      ],
      "quotes": [
        "off",
        "single",
        {
          "avoidEscape": true,
          "allowTemplateLiterals": true
        }
      ]
    },
    "extends": "default"
  },
  "optionalDependencies": {}
}
