-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.88 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
69
70
71
72
{
"name": "@cap-js/audit-logging",
"version": "1.2.1",
"description": "CDS plugin providing integration to the SAP Audit Log service as well as out-of-the-box personal data-related audit logging based on annotations.",
"repository": "cap-js/audit-logging",
"author": "SAP SE (https://www.sap.com)",
"homepage": "https://cap.cloud.sap/",
"license": "Apache-2.0",
"main": "cds-plugin.js",
"files": [
"lib",
"srv"
],
"scripts": {
"lint": "npx eslint . --max-warnings=0",
"format": "npx prettier . --write && format-cds -f",
"format:check": "npx prettier . --check && format-cds --check",
"test": "npx jest --silent --testPathIgnorePatterns=integration"
},
"peerDependencies": {
"@sap/cds": ">=8"
},
"devDependencies": {
"@cap-js/audit-logging": "file:.",
"@cap-js/cds-test": ">=0",
"@cap-js/sqlite": ">=1",
"@sap/cds-lsp": "^9.9.0",
"@sap/cds-mtxs": "^3.7.1",
"express": "^4",
"jest": "^30"
},
"cds": {
"requires": {
"audit-log": {
"handle": [
"READ",
"WRITE"
],
"outbox": true,
"[development]": {
"kind": "audit-log-to-console"
},
"[hybrid]": {
"kind": "audit-log-to-restv2"
},
"[production]": {
"kind": "audit-log-to-restv2"
}
},
"kinds": {
"audit-log-to-als": {
"impl": "@cap-js/audit-logging/srv/log2als"
},
"audit-log-to-console": {
"impl": "@cap-js/audit-logging/srv/log2console"
},
"audit-log-to-restv2": {
"impl": "@cap-js/audit-logging/srv/log2restv2",
"vcap": {
"label": "auditlog"
}
},
"audit-log-to-alsng": {
"impl": "@cap-js/audit-logging/srv/log2alsng",
"vcap": {
"name": "auditlog-ng"
}
}
}
}
}
}