-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 1.47 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@cap-js/sdm",
"description": "CAP plugin for effortless integration of CAP applications with SAP Document Management Service.",
"version": "1.2.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": "latest",
"@sap/xssec": "^3.6.1",
"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": "^8.1.2",
"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",
"lint": "npx eslint --fix . --no-cache"
},
"cds": {
"requires": {
"kinds": {
"sdm": {
"impl": "@cap-js/sdm/lib/sdm"
}
},
"[development]": {
"attachments": {
"kind": "sdm"
}
},
"[production]": {
"attachments": {
"kind": "sdm"
}
},
"[hybrid]": {
"attachments": {
"kind": "sdm"
}
}
}
}
}