{
  "name": "nats-jobs",
  "version": "0.8.0",
  "description": "Background job processor using NATS",
  "author": "GovSpend",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "repository": {
    "type": "git",
    "url": "git://github.com/smartprocure/nats-jobs.git",
    "directory": "javascript"
  },
  "scripts": {
    "prepare": "npm run lint && npm run test && npm run build",
    "build": "npm run clean && tsc --declaration",
    "build:develop": "tsc --watch",
    "clean": "rm -rf dist",
    "test": "jest",
    "prettier": "prettier --ignore-path .gitignore --write './**/*.ts'",
    "lint": "eslint src/**"
  },
  "keywords": [
    "nats",
    "messaging",
    "queue",
    "job",
    "worker",
    "background",
    "processing",
    "processor"
  ],
  "engines": {
    "node": ">=16.0.0"
  },
  "license": "ISC",
  "dependencies": {
    "debug": "^4.3.4",
    "eventemitter3": "^4.0.7",
    "lodash": "^4.17.21",
    "ms": "^2.1.3"
  },
  "peerDependencies": {
    "nats": ">= 2.6.1"
  },
  "prettier": {
    "semi": false,
    "singleQuote": true,
    "trailingComma": "es5"
  },
  "devDependencies": {
    "@types/debug": "^4.1.7",
    "@types/jest": "^28.1.1",
    "@types/lodash": "^4.14.182",
    "@types/node-schedule": "^1.3.2",
    "@typescript-eslint/eslint-plugin": "^5.27.1",
    "eslint": "^8.13.0",
    "ioredis": "^5.0.4",
    "jest": "^28.1.1",
    "nats": "^2.9.2",
    "prettier": "^2.6.2",
    "redlock": "^5.0.0-beta.2",
    "ts-jest": "^28.0.4",
    "ts-node": "^10.7.0",
    "typescript": "^4.9.4"
  }
}
