-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.15 KB
/
package.json
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": "@cap-js/event-broker",
"version": "0.1.2",
"description": "CDS plugin providing integration to SAP Event Broker",
"repository": {
"type": "git",
"url": "git+https://github.com/cap-js/event-broker.git"
},
"author": "SAP SE (https://www.sap.com)",
"homepage": "https://cap.cloud.sap/",
"license": "SEE LICENSE IN LICENSE",
"main": "cds-plugin.js",
"files": [
"CHANGELOG.md"
],
"scripts": {
"lint": "npx eslint .",
"test": "npx jest --silent"
},
"peerDependencies": {
"@sap/cds": ">=7"
},
"devDependencies": {
"@cap-js/event-broker": "file:.",
"@sap-cloud-sdk/resilience": "^3.21.0",
"@sap/xssec": "^4.2.4"
},
"cds": {
"requires": {
"kinds": {
"event-broker": {
"impl": "@cap-js/event-broker",
"format": "cloudevents",
"outbox": true,
"webhookPath": "/-/cds/event-broker/webhook",
"vcap": {
"label": "event-broker"
}
},
"event-broker-internal": {
"kind": "event-broker",
"vcap": {
"label": "eventmesh-sap2sap-internal"
}
}
}
}
}
}