{
  "name": "ibm-vpc",
  "version": "0.26.0",
  "description": "IBM Cloud VPC Node.js SDK",
  "repository": {
    "type": "git",
    "url": "https://github.com/IBM/vpc-node-sdk"
  },
  "keywords": [
    "ibm"
  ],
  "author": "IBM Corp.",
  "scripts": {
    "eslint:fix": "eslint . --fix",
    "eslint:check": "eslint . --cache",
    "lint": "npm run eslint:check",
    "lint-fix": "npm run eslint:fix && npm run tslint:fix",
    "build": "tsc && cp package.json dist/",
    "postversion": "tsc-publish --no-checks --dry-run",
    "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 test/integration",
    "test-example": "npm run build && jest examples/ ",
    "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"
  },
  "license": "Apache-2.0",
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "@types/node": "^14.0.0",
    "extend": "^3.0.2",
    "ibm-cloud-sdk-core": "^5.3.0",
    "uuid": "^9.0.0"
  },
  "jest": {
    "collectCoverage": true,
    "coverageDirectory": "./coverage/",
    "coveragePathIgnorePatterns": [
      "<rootDir>/test/"
    ],
    "testEnvironment": "node"
  }
}