{
  "name": "rethinkdb-job-queue",
  "version": "3.1.7",
  "description": "A persistent job or task queue backed by RethinkDB.",
  "main": "index.js",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/grantcarthew/node-rethinkdb-job-queue.git"
  },
  "keywords": [
    "job",
    "jobs",
    "queue",
    "task",
    "tasks",
    "rethinkdb",
    "asynchronous",
    "async",
    "background",
    "long",
    "running",
    "service",
    "distributed",
    "worker",
    "processing"
  ],
  "author": "Grant Carthew",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/grantcarthew/node-rethinkdb-job-queue/issues"
  },
  "homepage": "https://github.com/grantcarthew/node-rethinkdb-job-queue",
  "scripts": {
    "prepublish": "npm run build",
    "clean": "rm -Rf dist",
    "build": "npm run clean && babel src --presets babel-preset-latest --out-dir dist",
    "test": "tap --timeout 10000 ./tests/*.spec.js",
    "tv": "tap --timeout 10000 --reporter tap ./tests/*.spec.js",
    "lint": "standard",
    "coverage": "npm run coverage:rm && npm run coverage:cover && npm run coverage:report && npm run coverage:check",
    "coverage:cover": "istanbul cover tap -- --timeout 10000 ./tests/*.spec.js",
    "coverage:rm": "rm -Rf coverage",
    "coverage:report": "istanbul report",
    "coverage:check": "istanbul check-coverage ../site-rjq-coverage/coverage.json",
    "upgrade": "npm run upgrade:rm && npm run upgrade:ncu && npm run upgrade:install && npm run upgrade:finish",
    "upgrade:rm": "rm -Rf node_modules",
    "upgrade:ncu": "npm-check-updates --upgradeAll",
    "upgrade:install": "npm install",
    "upgrade:finish": "npm run build"
  },
  "standard": {
    "ignore": "dist"
  },
  "dependencies": {
    "bluebird": "^3.5.1",
    "debug": "^3.1.0",
    "rethinkdbdash": "^2.3.31",
    "serialize-error": "^2.1.0",
    "uuid": "^3.2.1"
  },
  "devDependencies": {
    "babel-cli": "^6.26.0",
    "babel-preset-latest": "^6.24.1",
    "istanbul": "0.4.5",
    "npm-check-updates": "^2.14.0",
    "proxyquire": "^1.8.0",
    "standard": "^11.0.0",
    "tap": "^11.1.1",
    "tap-spec": "^4.1.1"
  }
}
