-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.42 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.42 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@cap-js/data-privacy",
"version": "0.6.1",
"description": "CDS plugin providing an integration with the SAP Data Privacy Integration service for PII data retention and information retrieval based on annotations.",
"license": "Apache-2.0",
"author": "SAP SE (https://www.sap.com)",
"homepage": "https://cap.cloud.sap/",
"repository": {
"type": "git",
"url": "git+https://github.com/cap-js/data-privacy.git"
},
"main": "cds-plugin.js",
"keywords": [
"cds",
"CAP",
"cdsbuild"
],
"files": [
"_i18n",
"lib",
"srv",
"db",
"index.cds",
"cds-plugin.js",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"dependencies": {
"@sap/xsenv": "^6.1.0"
},
"peerDependencies": {
"@cap-js/audit-logging": "^1.1.0",
"@sap/cds": ">=9.8"
},
"devDependencies": {
"@cap-js/cds-test": "^0.4.0",
"@cap-js/cds-types": "^0.15.0",
"@cap-js/sqlite": "^2",
"@eslint/js": "^10",
"@sap/cds-common-content": "*",
"@sap/cds-dk": "^9",
"@sap/cds-lsp": "^9.2.1",
"eslint": "^10",
"jest": "^30.2.0",
"patch-package": "^8",
"prettier": "^3.8.1"
},
"engines": {
"node": ">=20"
},
"scripts": {
"postinstall": "npx patch-package",
"lint": "npx eslint .",
"format": "prettier . --write && format-cds -f",
"format:check": "prettier . --check && format-cds --check",
"test": "npx jest --silent",
"test:integration": "cds bind --exec -- npx jest --silent --testPathPatterns \"tests/retention/dataSubjectDeletion.test.js|tests/information/information-service.test.js|tests/csn-enhancements/joinUnionRuntime.test.js\""
},
"jest": {
"testTimeout": 40000
},
"cds": {
"requires": {
"sap.ilm.RetentionService": {
"kind": "TableHeaderBlocking",
"external": false,
"tableRestrictions": "srv",
"maxProjectionDepth": 20,
"deploymentDescriptor": "mta.yaml"
},
"sap.dpp.InformationService": {
"external": false,
"model": "@cap-js/data-privacy/srv/DPIInformation"
},
"kinds": {
"sap.ilm.RetentionService-TableHeaderBlocking": {
"model": "@cap-js/data-privacy/srv/TableHeaderBlocking"
}
}
}
},
"workspaces": [
"tests/bookshop-app",
"tests/incidents-mgmt",
"tests/incidents-mgmt/mtx/sidecar",
"tests/information/extend-information-endpoint",
"tests/retention/extend-retention-endpoint"
]
}