@sap/subaccount-destination-service-provider
Version:
Provide service consumption of SAP subaccount services
82 lines • 2.73 kB
JSON
{
"name": "@sap/subaccount-destination-service-provider",
"version": "2.18.3",
"description": "Provide service consumption of SAP subaccount services",
"main": "out/src/index.js",
"files": [
"out"
],
"scripts": {
"compile": "tsc -p ./",
"build": "npm run compile && copyfiles -u 2 src/abap/retrievers/resources/* out/src/abap/",
"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 build",
"pretest": "npm run compile",
"test": "nyc mocha --config mocharc.js --reporter mocha-junit-reporter --reporter-options mochaFile=./junit-tests.xml",
"watch": "tsc -watch -p ./",
"install-compile": "npm install && npm run compile",
"install:ci": "npm config set registry=https://int.repositories.cloud.sap/artifactory/api/npm/build-releases-npm && npm config list && npm install",
"ci": "npm run install:ci && npm run test && npm run lint",
"changeset:version": "npx changeset version && npm run install:ci && npm run docs",
"docs": "typedoc",
"prepare": "husky"
},
"keywords": [
"service-provider"
],
"author": "SAP",
"dependencies": {
"@sap-ux/logger": "0.8.5",
"@sap-ux/store": "1.5.13",
"@sap/service-provider-apis": "2.10.4",
"stream-json": "1.9.1",
"vkbeautify": "0.99.3"
},
"devDependencies": {
"@changesets/cli": "2.31.0",
"@eslint/js": "9.23.0",
"@istanbuljs/nyc-config-typescript": "1.0.2",
"@types/chai": "4.3.20",
"@types/chai-as-promised": "7.1.8",
"@types/mocha": "10.0.10",
"@types/node": "22.19.20",
"@types/sinon": "21.0.1",
"@types/stream-json": "1.7.8",
"@types/vkbeautify": "0.99.4",
"@typescript-eslint/eslint-plugin": "8.48.0",
"@typescript-eslint/parser": "8.48.0",
"chai": "4.5.0",
"chai-as-promised": "7.1.2",
"copyfiles": "2.4.1",
"eslint": "9.39.1",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-chai-friendly": "1.1.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-prettier": "5.4.0",
"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.7.3",
"typedoc": "0.28.19",
"typedoc-plugin-markdown": "4.11.0"
},
"prettier": {
"endOfLine": "lf",
"printWidth": 120
},
"lint-staged": {
"*.{ts}": [
"eslint --fix --max-warnings=0"
],
"*.{js,ts,md,json}": [
"prettier --write"
]
}
}