@sap/destination-instance-service-provider
Version:
Provide service consumption of SAP IT services
77 lines • 2.34 kB
JSON
{
"name": "@sap/destination-instance-service-provider",
"version": "2.3.7",
"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 compile && npm run test && npm run lint",
"test": "nyc mocha --reporter mocha-junit-reporter --reporter-options mochaFile=./junit-tests.xml",
"watch": "tsc -watch -p ./",
"prepare": "husky"
},
"repository": {
"type": "git"
},
"keywords": [
"destination-instance",
"service-provider"
],
"author": "SAP",
"dependencies": {
"@sap/cf-tools": "3.3.1",
"@sap/service-provider-apis": "2.9.2",
"lodash": "4.18.1",
"vkbeautify": "0.99.3",
"xml2js": "0.6.2"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@types/chai": "4.3.5",
"@types/chai-as-promised": "7.1.7",
"@types/lodash": "4.17.24",
"@types/mocha": "5.2.7",
"@types/node": "22.19.1",
"@types/sinon": "21.0.1",
"@types/vkbeautify": "0.99.4",
"@types/xml2js": "0.4.14",
"@typescript-eslint/eslint-plugin": "8.48.0",
"@typescript-eslint/parser": "8.48.0",
"chai": "4.3.10",
"eslint": "9.39.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-chai-friendly": "1.1.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-prettier": "5.1.3",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"mocha": "11.7.5",
"mocha-junit-reporter": "2.2.1",
"nyc": "18.0.0",
"prettier": "3.8.2",
"sinon": "21.1.2",
"ts-node": "10.9.2",
"typescript": "5.8.3"
},
"prettier": {
"endOfLine": "lf",
"printWidth": 120
},
"lint-staged": {
"*.{ts}": [
"eslint --fix --max-warnings=0"
],
"*.{js,ts,md,json}": [
"prettier --write"
]
}
}