{
  "author": "Evan Tahler <evantahler@gmail.com>",
  "name": "node-resque",
  "description": "an opinionated implementation of resque in node",
  "license": "Apache-2.0",
  "version": "9.6.0",
  "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": ">=12.0.0"
  },
  "dependencies": {
    "ioredis": "^5.10.1"
  },
  "devDependencies": {
    "@types/jest": "^30.0.0",
    "@types/node": "^25.0.7",
    "ioredis-mock": "^8.13.1",
    "jest": "^30.2.0",
    "node-schedule": "^2.1.1",
    "prettier": "^3.7.4",
    "ts-jest": "^29.4.6",
    "ts-node": "^10.9.2",
    "typedoc": "^0.28.16",
    "typescript": "^6.0.3"
  },
  "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"
  }
}
