{
  "name": "@sap/destination-instance-service-provider",
  "version": "2.1.2",
  "description": "Provide service consumption of SAP IT services",
  "main": "out/src/index.js",
  "files": [
    "out"
  ],
  "scripts": {
    "compile": "tsc -p ./",
    "build": "npm install",
    "format:fix": "prettier --write --ignore-path .gitignore \"**/*.@(ts|js|json|md)\"",
    "format:validate": "prettier --check --ignore-path .gitignore \"**/*.@(ts|js|json|md)\"",
    "lint": "eslint . --ext .ts --fix --max-warnings=0",
    "prepublishOnly": "npm run compile",
    "pretest": "npm run compile",
    "ci": "npm config set registry=https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm && npm config list && npm install && npm run test && npm run lint",
    "test": "nyc mocha -p tsconfig.json --opts ./mocha.opts",
    "watch": "tsc -watch -p ./"
  },
  "repository": {
    "type": "git"
  },
  "keywords": [
    "destination-instance",
    "service-provider"
  ],
  "author": "SAP",
  "dependencies": {
    "@sap/cf-tools": "3.2.0",
    "@sap/service-provider-apis": "2.1.9",
    "lodash": "4.17.21",
    "vkbeautify": "0.99.3",
    "xml2js": "0.6.2"
  },
  "devDependencies": {
    "@istanbuljs/nyc-config-typescript": "1.0.2",
    "@types/vkbeautify": "0.99.2",
    "@types/chai": "4.3.5",
    "@types/chai-as-promised": "7.1.7",
    "@types/lodash": "4.14.191",
    "@types/mocha": "5.2.7",
    "@types/node": "13.1.6",
    "@types/sinon": "10.0.16",
    "@types/xml2js": "0.4.11",
    "@typescript-eslint/eslint-plugin": "6.9.1",
    "@typescript-eslint/parser": "6.9.1",
    "chai": "4.3.10",
    "eslint": "8.57.0",
    "eslint-config-prettier": "9.1.0",
    "eslint-plugin-eslint-comments": "3.2.0",
    "eslint-plugin-prettier": "5.1.3",
    "husky": "1.3.1",
    "lint-staged": "15.2.7",
    "mocha": "7.2.0",
    "nyc": "15.1.0",
    "prettier": "3.3.2",
    "sinon": "17.0.1",
    "ts-node": "10.9.2",
    "typescript": "5.4.5"
  },
  "prettier": {
    "endOfLine": "lf",
    "printWidth": 120
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{ts}": [
      "eslint --fix --max-warnings=0"
    ],
    "*.{js,ts,md,json}": [
      "prettier --write"
    ]
  }
}