-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.66 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
63
64
65
66
67
68
{
"name": "cloud-sf-extension-cap-sample",
"version": "1.0.0",
"description": "Successfactors Extension Application",
"repository": "https://github.com/SAP-samples/cloud-sf-extension-cap-sample.git",
"license": "Apache License 2.0",
"dependencies": {
"@sap/audit-logging": "^3.1.0",
"@sap/cds": "^4.1.5",
"@sap/cds-rest": "^1.3.0",
"@sap/hana-client": "^2.4.196",
"@sap/xb-msg-amqp-v100": "^0.9.40",
"@sap/xsenv": "^2.2.0",
"@sap/xssec": "2.2.5",
"express": "^4",
"passport": "^0.4.1"
},
"engines": {
"node": "^10"
},
"scripts": {
"start": "npx cds run",
"build": "cds build"
},
"cds": {
"requires": {
"uaa": {
"kind": "xsuaa"
},
"messaging": {
"kind": "enterprise-messaging"
},
"db": {
"kind": "sql"
},
"ECSkillsManagement": {
"kind": "odata",
"model": "srv/external/ECSkillsManagement",
"credentials": {
"destination": "sfextension-service",
"path": "/odata/v2",
"requestTimeout": 18000000
}
},
"FoundationPlatformPLT": {
"kind": "odata",
"model": "srv/external/FoundationPlatformPLT",
"credentials": {
"destination": "sfextension-service",
"path": "/odata/v2",
"requestTimeout": 18000000
}
},
"PLTUserManagement": {
"kind": "odata",
"model": "srv/external/PLTUserManagement",
"credentials": {
"destination": "sfextension-service",
"path": "/odata/v2",
"requestTimeout": 18000000
}
}
},
"odata": {
"version": "v4"
}
}
}