{
  "name": "hmpo-model",
  "version": "7.0.1",
  "description": "Simple model for interacting with http/rest apis.",
  "main": "index.js",
  "scripts": {
    "pretest": "npm run lint",
    "test": "npm run unit",
    "posttest": "npm run check-coverage && npm audit --omit=dev",
    "lint": "eslint .",
    "unit": "nyc --reporter=lcov --reporter=text-summary _mocha test/ --recursive --require test/helper",
    "check-coverage": "nyc check-coverage",
    "prepare": "husky"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/HMPO/hmpo-model.git"
  },
  "author": "PEX",
  "license": "MIT",
  "engines": {
    "node": "24.x"
  },
  "bugs": {
    "url": "https://github.com/HMPO/hmpo-model/issues"
  },
  "homepage": "https://github.com/HMPO/hmpo-model#readme",
  "dependencies": {
    "debug": "^4.3.7",
    "got": "<12",
    "http-proxy-agent": "^7.0.2",
    "https-proxy-agent": "^7.0.5",
    "lodash.kebabcase": "^4.1.1"
  },
  "devDependencies": {
    "chai": "^4.5.0",
    "eslint": "^9.12.0",
    "hmpo-logger": "^9.0.0",
    "mocha": "^10.7.3",
    "nyc": "^17.1.0",
    "proxyquire": "^2.1.3",
    "sinon": "^21.0.2",
    "sinon-chai": "^3.7.0",
    "husky": "^9.1.6",
    "globals": "^15.9.0"
  },
  "overrides": {
    "mocha": {
      "serialize-javascript": "^7.0.4"
    }
  },
  "nyc": {
    "all": true,
    "exclude": [
      "coverage/**",
      "test/**",
      "eslint.config.js"
    ],
    "lines": 100,
    "branches": 100,
    "functions": 100,
    "statements": 100
  }
}
