{
  "author": "Evan Tahler <evantahler@gmail.com>",
  "name": "@smartprocure/node-resque",
  "description": "an opinionated implementation of resque in node",
  "license": "Apache-2.0",
  "version": "8.3.3",
  "homepage": "http://github.com/actionhero/node-resque",
  "repository": {
    "type": "git",
    "url": "git://github.com/actionhero/node-resque.git"
  },
  "main": "dist/index",
  "types": "dist/index",
  "keywords": [
    "delayed",
    "queue",
    "resque",
    "redis",
    "work",
    "worker",
    "background",
    "job",
    "task"
  ],
  "engines": {
    "node": ">= 8"
  },
  "dependencies": {
    "ioredis": "^4.19.4",
    "redlock-leader": "github:dubiousdavid/redlock-leader#1.1.0"
  },
  "devDependencies": {
    "@types/ioredis": "^4.17.10",
    "@types/jest": "^26.0.19",
    "@types/node": "^14.14.19",
    "ioredis-mock": "^5.2.0",
    "jest": "^26.6.3",
    "node-schedule": "^1.3.2",
    "prettier": "^2.2.1",
    "ts-jest": "^26.4.4",
    "ts-node": "^9.1.1",
    "typedoc": "^0.20.10",
    "typescript": "^4.1.3"
  },
  "jest": {
    "testPathIgnorePatterns": [
      "<rootDir>/__tests__/utils"
    ],
    "transform": {
      "^.+\\.ts?$": "ts-jest"
    }
  },
  "scripts": {
    "prepare": "npm run build && npm run docs",
    "pretest": "npm run lint && npm run build",
    "lint": "prettier --check src __tests__ examples \"*.md\"",
    "pretty": "prettier --write src __tests__ examples \"**/*.md\"",
    "test": "jest",
    "build": "tsc --declaration",
    "docs": "typedoc --out docs --theme default src/index.ts"
  }
}
