UNPKG

@sap/subaccount-destination-service-provider

Version:

Provide service consumption of SAP subaccount services

79 lines 2.41 kB
{ "name": "@sap/subaccount-destination-service-provider", "version": "2.4.4", "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 -p tsconfig.json --opts ./mocha.opts", "watch": "tsc -watch -p ./", "install-compile": "npm install && 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" }, "keywords": [ "service-provider" ], "author": "SAP", "dependencies": { "@sap/bas-sdk": "3.11.6", "@sap/service-provider-apis": "2.1.9", "stream-json": "1.8.0", "vkbeautify": "0.99.3", "xml2js": "0.6.2" }, "devDependencies": { "@istanbuljs/nyc-config-typescript": "0.1.3", "@types/chai": "4.3.16", "@types/chai-as-promised": "7.1.7", "@types/lodash": "4.14.200", "@types/mocha": "5.2.7", "@types/node": "20.14.2", "@types/sinon": "17.0.3", "@types/stream-json": "1.7.7", "@types/vkbeautify": "0.99.4", "@types/xml2js": "0.4.14", "@typescript-eslint/eslint-plugin": "6.21.0", "@typescript-eslint/parser": "6.21.0", "chai": "4.3.10", "chai-as-promised": "7.1.2", "copyfiles": "2.4.1", "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": "6.2.3", "nyc": "17.0.0", "prettier": "3.3.2", "sinon": "18.0.0", "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" ] } }