{
  "name": "@oada/jobs",
  "version": "5.0.1",
  "description": "A library for oada job based microservices",
  "source": "src/index.ts",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "module": "./src/index.ts",
  "type": "module",
  "engines": {
    "node": ">=20.0.0"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "module": "./src/index.ts",
      "default": "./dist/index.js"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "src/**",
    "dist/**"
  ],
  "repository": "https://github.com/oada/jobs",
  "author": "Andrew Balmos <abalmos@purdue.edu>",
  "license": "Apache-2.0",
  "scripts": {
    "start": "ts-node src/index.ts",
    "prepare": "npm run build",
    "build": "tsc -b",
    "watch": "tsc -b --watch",
    "test": "yarn build test && c8 ava",
    "test:debug": "ava -T 60m -svc 1 --no-worker-threads"
  },
  "ava": {
    "failFast": false,
    "files": [
      "**/report.test.ts"
    ],
    "typescript": {
      "extensions": [
        "ts"
      ],
      "rewritePaths": {
        "src/": "dist/",
        "test/": ".test/"
      },
      "compile": false
    }
  },
  "c8": {
    "reporter": [
      "text",
      "lcov"
    ],
    "all": true,
    "src": "src",
    "exclude": [
      "*.d.ts",
      ".pnp.*",
      ".test"
    ]
  },
  "packageManager": "yarn@4.10.3",
  "dependencies": {
    "@oada/lib-prom": "^4.0.1",
    "@oada/list-lib": "^6.1.0",
    "@oada/oadaify": "^2.1.0",
    "@oada/pino-debug": "^4.0.1",
    "@oada/types": "3.5.3",
    "@sindresorhus/is": "^7.1.0",
    "cron": "^4.3.3",
    "csvjson": "^5.1.0",
    "dayjs": "^1.11.18",
    "debug": "^4.4.3",
    "eventemitter3": "^5.0.1",
    "json-pointer": "^0.6.2",
    "jsonpath-plus": "^10.3.0",
    "moment": "^2.30.1",
    "p-queue": "^9.0.0",
    "p-timeout": "^7.0.0",
    "perf_hooks": "^0.0.1",
    "serialize-error": "^12.0.0",
    "tiny-json-http": "^7.5.1",
    "tslib": "^2.8.1",
    "xksuid": "https://github.com/aultac/xksuid.git#commit=22a21eb01331191feb62ea0a4e67d96d2e80f396",
    "xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz"
  },
  "peerDependencies": {
    "@oada/client": "^4.5.5"
  },
  "peerDependenciesMeta": {
    "@oada/client": {
      "optional": true
    }
  },
  "devDependencies": {
    "@ava/typescript": "^6.0.0",
    "@biomejs/biome": "^2.2.5",
    "@commitlint/config-conventional": "^20.0.0",
    "@oada/client": "^5.3.0",
    "@tsconfig/node20": "^20.1.6",
    "@types/chai": "^5.2.2",
    "@types/convict": "^6.1.6",
    "@types/cron": "^2.4.3",
    "@types/debug": "^4.1.12",
    "@types/json-pointer": "^1.0.34",
    "@types/node": "20.19.19",
    "@types/tiny-json-http": "^7.3.4",
    "@yarnpkg/sdks": "^3.2.3",
    "ava": "^6.4.1",
    "c8": "^10.1.3",
    "chai": "^6.2.0",
    "commitlint": "^20.1.0",
    "convict": "^6.2.4",
    "dotenv": "^17.2.3",
    "ts-node": "^10.9.2",
    "typescript": "5.9.3"
  },
  "volta": {
    "node": "20.11.0"
  },
  "resolutions": {
    "xksuid": "https://github.com/g12i/xksuid.git#fix-crypto-polyfill",
    "xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz"
  }
}