-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.83 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.83 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
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@sap-cloud-sdk/connectivity",
"version": "4.6.0",
"description": "SAP Cloud SDK for JavaScript connectivity",
"homepage": "https://sap.github.io/cloud-sdk/docs/js/overview",
"license": "Apache-2.0",
"keywords": [
"sap-cloud-sdk",
"cloud-sdk",
"sap-cloud-platform",
"connectivity"
],
"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": {
"type": "git",
"url": "https://github.com/SAP/cloud-sdk-js.git",
"directory": "packages/connectivity"
},
"scripts": {
"compile": "tsc -b",
"prepublishOnly": "pnpm run compile && pnpm run readme",
"test": "pnpm run 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": "pnpm exec ts-node ../../scripts/replace-common-readme.ts"
},
"dependencies": {
"@sap-cloud-sdk/resilience": "workspace:^",
"@sap-cloud-sdk/util": "workspace:^",
"@sap/xsenv": "^6.2.0",
"@sap/xssec": "^4.13.0",
"async-retry": "^1.3.3",
"axios": "^1.15.0",
"jks-js": "^1.1.6",
"jsonwebtoken": "^9.0.3",
"safe-stable-stringify": "^2.5.0"
},
"devDependencies": {
"@jest/globals": "^30.3.0",
"@sap-cloud-sdk/test-util-internal": "workspace:^",
"depcheck": "^1.4.7",
"memfs": "^4.57.2",
"nock": "^14.0.11",
"prettier": "^3.8.1",
"typescript": "~5.9.3"
}
}