{
  "name": "pg-boss",
  "version": "9.0.3",
  "description": "Queueing jobs in Node.js using PostgreSQL like a boss",
  "main": "./src/index.js",
  "engines": {
    "node": ">=16"
  },
  "dependencies": {
    "cron-parser": "^4.0.0",
    "delay": "^5.0.0",
    "lodash.debounce": "^4.0.8",
    "p-map": "^4.0.0",
    "pg": "^8.5.1",
    "serialize-error": "^8.1.0",
    "uuid": "^9.0.0"
  },
  "devDependencies": {
    "@types/node": "^20.3.3",
    "luxon": "^3.0.1",
    "mocha": "^10.0.0",
    "nyc": "^15.1.0",
    "standard": "^17.0.0"
  },
  "scripts": {
    "test": "standard && mocha",
    "cover": "nyc npm test",
    "export-schema": "node ./scripts/construct.js",
    "export-migration": "node ./scripts/migrate.js",
    "export-rollback": "node ./scripts/rollback.js",
    "tsc": "tsc --noEmit types.d.ts",
    "readme": "node ./test/readme.js"
  },
  "mocha": {
    "timeout": 10000,
    "slow": 10000,
    "bail": true,
    "parallel": true,
    "require": "./test/hooks"
  },
  "nyc": {
    "include": [
      "src/**/*.js"
    ],
    "sourceMap": false,
    "instrument": true,
    "reporter": [
      "lcov",
      "text-summary",
      "text"
    ]
  },
  "standard": {
    "globals": [
      "describe",
      "it",
      "before",
      "after",
      "before",
      "beforeEach",
      "afterEach"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/timgit/pg-boss.git"
  },
  "keywords": [
    "postgresql",
    "postgres",
    "queue",
    "job"
  ],
  "author": "timgit",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/timgit/pg-boss/issues"
  },
  "homepage": "https://github.com/timgit/pg-boss#readme",
  "types": "./types.d.ts"
}
