{
  "name": "@ibm-cloud/platform-services",
  "version": "0.74.1",
  "description": "Node.js client library for IBM Cloud Platform Services",
  "repository": {
    "type": "git",
    "url": "https://github.com/IBM/platform-services-node-sdk"
  },
  "keywords": [
    "ibm"
  ],
  "author": "IBM Corp.",
  "scripts": {
    "clean": "rm -fr node_modules",
    "checknpm": "npm --version",
    "eslint:fix": "eslint . --fix",
    "eslint:check": "eslint . --cache",
    "lint": "npm run eslint:check",
    "lint-fix": "npm run eslint:fix",
    "build": "tsc && cp package.json dist/",
    "postversion": "publisher --no-checks --dry-run",
    "test-single": "jest --verbose=true --silent=false",
    "jest": "jest",
    "test": "npm run build && npm run lint && jest test/",
    "test-unit": "npm run build && jest test/unit/",
    "test-integration": "npm run build && jest --expand test/integration/",
    "test-travis": "jest --runInBand --testNamePattern='^((?!@slow).)*$' test/",
    "test-unit-travis": "jest --runInBand test/unit/",
    "test-integration-travis": "jest --runInBand --no-colors --testNamePattern='^((?!@slow).)*$' --json test/integration > test-output.log",
    "check-packages": "installed-check -e -d -v",
    "all": "npm run test-unit && npm run lint",
    "semantic-release": "semantic-release"
  },
  "license": "Apache-2.0",
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "@types/node": "^18.19.80",
    "extend": "3.0.2",
    "ibm-cloud-sdk-core": "^5.4.0"
  },
  "overrides": {
    "micromatch": "^4.0.8",
    "braces": "^3.0.3"
  },
  "jest": {
    "collectCoverage": true,
    "coverageDirectory": "./coverage/",
    "coveragePathIgnorePatterns": [
      "<rootDir>/test/",
      "<rootDir>/examples/"
    ],
    "testEnvironment": "node",
    "verbose": false,
    "silent": false
  }
}