-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.44 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "@sap-cloud-sdk/openapi",
"version": "4.0.2",
"description": "SAP Cloud SDK for JavaScript openapi",
"homepage": "https://sap.github.io/cloud-sdk/docs/js/overview",
"license": "Apache-2.0",
"keywords": [
"sap-cloud-sdk",
"cloud-sdk",
"sap-cloud-platform",
"open-api"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"dist/**/*.d.ts.map",
"internal.js",
"internal.d.ts"
],
"repository": "github:SAP/cloud-sdk-js",
"scripts": {
"compile": "tsc -b",
"prepublishOnly": "yarn compile && yarn readme",
"test": "yarn test:unit",
"test:unit": "jest",
"coverage": "jest --coverage",
"lint": "eslint --ext .ts . && prettier . --config ../../.prettierrc --ignore-path ../../.prettierignore -c",
"lint:fix": "set TIMING=1 && eslint --ext .ts . --fix --quiet && prettier . --config ../../.prettierrc --ignore-path ../../.prettierignore -w --log-level error",
"check:dependencies": "depcheck .",
"readme": "ts-node ../../scripts/replace-common-readme.ts"
},
"dependencies": {
"@sap-cloud-sdk/connectivity": "^4.0.2",
"@sap-cloud-sdk/http-client": "^4.0.2",
"@sap-cloud-sdk/resilience": "^4.0.2",
"@sap-cloud-sdk/util": "^4.0.2",
"axios": "^1.10.0"
},
"devDependencies": {
"nock": "^14.0.6",
"typescript": "~5.8.3"
}
}