-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 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
{
"name": "@cap-js/audit-logging",
"version": "0.8.3",
"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": "SEE LICENSE IN LICENSE",
"main": "cds-plugin.js",
"files": [
"lib",
"srv",
"CHANGELOG.md"
],
"scripts": {
"lint": "npx eslint .",
"test": "npm run test-new-db && npm run test-old-db",
"test-new-db": "CDS_ENV='better-sqlite' npx jest --silent",
"test-old-db": "CDS_ENV='legacy-sqlite' npx jest --silent"
},
"peerDependencies": {
"@sap/cds": ">=7"
},
"devDependencies": {
"@cap-js/audit-logging": "file:.",
"@cap-js/sqlite": "^1",
"axios": "^1",
"eslint": "^9",
"express": "^4",
"jest": "^29",
"sqlite3": "^5.1.6"
},
"cds": {
"requires": {
"[test]": {
"outbox": "persistent-outbox"
},
"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-console": {
"impl": "@cap-js/audit-logging/srv/log2console"
},
"audit-log-to-restv2": {
"impl": "@cap-js/audit-logging/srv/log2restv2",
"vcap": {
"label": "auditlog"
}
}
}
}
}
}