{
  "name": "nomad-client",
  "version": "0.0.2",
  "description": "TypeScript client library for HashiCorp Nomad API - Complete SDK with type-safe interfaces for jobs, nodes, allocations, and cluster management",
  "main": "./src/index.ts",
  "scripts": {
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:unit": "jest tests/unit",
    "test:integration": "jest tests/integration",
    "test:ci": "jest --ci --coverage --watchAll=false",
    "build": "tsc",
    "dev": "ts-node ./src/index.ts",
    "example:complete": "ts-node ./examples/complete-example.ts",
    "example:allocations": "ts-node ./examples/allocations-example.ts",
    "example:jobs": "ts-node ./examples/advanced-jobs-example.ts",
    "example:nodes": "ts-node ./examples/nodes-example.ts",
    "example:usage": "ts-node ./examples/usage-example.ts"
  },
  "keywords": [
    "nomad",
    "hashicorp",
    "api",
    "client",
    "typescript",
    "orchestration",
    "cluster",
    "jobs",
    "nodes",
    "allocations",
    "containers",
    "scheduler",
    "devops",
    "infrastructure",
    "sdk"
  ],
  "author": {
    "name": "Fabricio Luis Covalesci",
    "email": "fabcovalesci@gmail.com"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/fabriciocovalesci/nomad-client.git"
  },
  "bugs": {
    "url": "https://github.com/fabriciocovalesci/nomad-client/issues"
  },
  "homepage": "https://github.com/fabriciocovalesci/nomad-client#readme",
  "engines": {
    "node": ">=14.0.0"
  },
  "dependencies": {
    "awilix": "^12.0.5",
    "axios": "^1.13.1",
    "hcl2-parser": "^1.0.3"
  },
  "devDependencies": {
    "@jest/globals": "^30.2.0",
    "@types/axios": "^0.14.0",
    "@types/jest": "^30.0.0",
    "@types/node": "^24.9.2",
    "jest": "^30.2.0",
    "ts-jest": "^29.4.5",
    "ts-node": "^10.9.2",
    "typescript": "^5.9.3"
  }
}
