{
  "name": "@ibm-cloud/cloudant",
  "version": "0.5.1",
  "description": "IBM Cloudant Node.js SDK",
  "main": "index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/IBM/cloudant-node-sdk"
  },
  "keywords": [
    "ibm",
    "cloudant"
  ],
  "author": "IBM Corp.",
  "scripts": {
    "eslint:fix": "eslint . --ext .ts,.js --fix",
    "eslint:check": "eslint . --ext .ts,.js --cache",
    "lint": "npm run eslint:check",
    "lint-fix": "npm run eslint:fix",
    "copymeta": "[ -d 'dist' ] && cp package.json LICENSE README.md dist/",
    "build": "tsc",
    "postbuild": "npm run copymeta",
    "version": "bump2version --allow-dirty --new-version $npm_package_version patch && git add README.md .bumpversion.cfg",
    "postversion": "npm run copymeta",
    "jest": "jest --runInBand",
    "test": "npm run build && npm run lint && jest --runInBand test/",
    "test-unit": "npm run build && jest --runInBand test/unit/",
    "test-integration": "npm run build && jest --runInBand 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"
  },
  "license": "Apache-2.0",
  "engines": {
    "node": "^14 || ^16 || ^18"
  },
  "dependencies": {
    "@types/node": "14.18.42",
    "ibm-cloud-sdk-core": "4.0.5"
  },
  "devDependencies": {
    "@types/jest": "29.5.1",
    "@typescript-eslint/eslint-plugin": "5.59.0",
    "@typescript-eslint/parser": "5.59.0",
    "dotenv": "16.0.3",
    "eslint": "8.39.0",
    "eslint-config-airbnb-base": "15.0.0",
    "eslint-config-airbnb-typescript": "17.0.0",
    "eslint-config-prettier": "8.8.0",
    "eslint-import-resolver-typescript": "3.5.0",
    "eslint-plugin-header": "3.1.1",
    "eslint-plugin-import": "2.27.4",
    "eslint-plugin-jest": "27.2.0",
    "eslint-plugin-jsdoc": "43.0.6",
    "eslint-plugin-node": "11.1.0",
    "eslint-plugin-prettier": "4.2.1",
    "jest": "29.5.0",
    "jest-junit": "16.0.0",
    "prettier": "2.8.8",
    "sinon": "15.0.4",
    "ts-jest": "29.1.0",
    "typedoc": "0.24.6",
    "typescript": "5.0.4"
  },
  "peerDependencies": {
    "@types/tough-cookie": "^4.0.0",
    "extend": "^3.0.2",
    "tough-cookie": "^4.0.0"
  },
  "jest": {
    "collectCoverage": true,
    "coverageDirectory": "./coverage/",
    "coveragePathIgnorePatterns": [
      "<rootDir>/test/"
    ],
    "preset": "ts-jest",
    "testEnvironment": "node",
    "testResultsProcessor": "jest-junit"
  },
  "jest-junit": {
    "suiteName": "Generated unit tests",
    "outputDirectory": "./junitreports/",
    "outputName": "junit.xml",
    "uniqueOutputName": "false",
    "classNameTemplate": "{classname}",
    "titleTemplate": "{title}",
    "ancestorSeparator": " › ",
    "usePathForSuiteName": "true"
  },
  "files": [
    "/index.js",
    "/index.js.map",
    "/index.d.ts",
    "/auth",
    "/cloudant",
    "/lib"
  ]
}
