{
  "name": "@ibm-cloud/continuous-delivery",
  "version": "3.0.0",
  "description": "IBM Cloud Continuous Delivery Node.js SDK",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/IBM/continuous-delivery-node-sdk.git"
  },
  "keywords": [
    "ibm"
  ],
  "publishConfig": {
    "access": "public"
  },
  "author": "IBM Corp.",
  "scripts": {
    "all": "npm run test-unit && npm run lint",
    "build": "tsc && cp package.json dist/",
    "check-packages": "installed-check -e -d -v",
    "clean": "rm -rf node_modules",
    "jest": "jest",
    "lint": "eslint",
    "lint-fix": "eslint --fix",
    "postversion": "publisher --no-checks --dry-run",
    "semVerDryRun": "npx --package semantic-release --package @semantic-release/changelog --package @semantic-release/git semantic-release -d",
    "test": "npm run build && npm run lint && jest test/",
    "test-unit": "npm run build && jest --runInBand test/unit/",
    "test-integration": "npm run build && jest test/integration",
    "test-examples": "npm run build && jest examples/"
  },
  "license": "Apache-2.0",
  "engines": {
    "node": ">=22.0.0"
  },
  "dependencies": {
    "extend": "3.0.2",
    "ibm-cloud-sdk-core": "^5.4.11"
  },
  "overrides": {
    "braces": "^3.0.3",
    "micromatch": "^4.0.8"
  },
  "jest": {
    "collectCoverage": true,
    "coverageDirectory": "./coverage/",
    "coveragePathIgnorePatterns": [
      "<rootDir>/test/",
      "<rootDir>/examples/",
      "<rootDir>/node_modules/"
    ],
    "coverageProvider": "v8",
    "testEnvironment": "node",
    "modulePathIgnorePatterns": [
      "<rootDir>/dist/"
    ]
  }
}