-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.79 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.79 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
{
"name": "@cap-js/sdm",
"description": "CAP plugin for effortless integration of CAP applications with SAP Document Management Service.",
"version": "1.8.2",
"repository": "cap-js/sdm",
"author": "SAP SE (https://www.sap.com)",
"homepage": "https://cap.cloud.sap/",
"main": "cds-plugin.js",
"license": "Apache-2.0",
"files": [
"lib",
"index.cds",
"CHANGELOG.md"
],
"keywords": [
"sap",
"cap",
"dms",
"sdm",
"plugin"
],
"dependencies": {
"@cap-js/attachments": "3.8.0",
"@sap-cloud-sdk/connectivity": "^4.3.1",
"@sap-cloud-sdk/http-client": "^4.3.1",
"@sap/xssec": "^4",
"axios": "^1.7.4",
"node-cache": "^5.1.2"
},
"peerDependencies": {
"@sap/cds": ">=8"
},
"devDependencies": {
"@cap-js/sqlite": "^1",
"@eslint/js": "^9.4.0",
"@sap/cds-dk": "^9",
"eslint": "^9.4.0",
"eslint-plugin-jest": "^28.5.0",
"globals": "^15.3.0",
"jest": "^29.7.0"
},
"scripts": {
"start": "cds-serve",
"test": "jest --coverage --config jest.config.js",
"integration-test": "jest --config jest-integration.config.js",
"integration-test-non-draft": "jest --config jest-integration-non-draft.config.js",
"lint": "npx eslint --fix . --no-cache"
},
"cds": {
"requires": {
"sdm": {
"vcap": {
"label": "sdm"
}
},
"kinds": {
"sdm": {
"impl": "@cap-js/sdm/lib/sdm"
}
},
"[development]": {
"attachments": {
"kind": "sdm",
"scan": false
}
},
"[production]": {
"attachments": {
"kind": "sdm",
"scan": false
}
},
"[hybrid]": {
"attachments": {
"kind": "sdm",
"scan": false
}
}
}
}
}