-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
75 lines (75 loc) · 1.59 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
71
72
73
74
75
{
"name": "@cap-js/attachments",
"description": "CAP cds-plugin providing image and attachment storing out-of-the-box.",
"version": "1.1.8",
"repository": "cap-js/attachments",
"author": "SAP SE (https://www.sap.com)",
"homepage": "https://cap.cloud.sap/",
"license": "SEE LICENSE IN LICENSE",
"main": "cds-plugin.js",
"files": [
"index.cds",
"lib",
"srv"
],
"scripts": {
"lint": "npx eslint .",
"test": "npx jest attachments.test.js"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.400.0",
"@aws-sdk/lib-storage": "^3.515.0",
"@sap/xsenv": "^4.2.0"
},
"devDependencies": {
"@cap-js/sqlite": "^1.0.1",
"axios": "^1.4.0",
"chai": "^4.4.1",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"eslint": "^8",
"express": "^4.18.2",
"jest": "^29.7.0"
},
"peerDependencies": {
"@sap/cds": ">=8"
},
"engines": {
"node": ">=17.0.0"
},
"cds": {
"requires": {
"kinds": {
"attachments-db": {
"impl": "@cap-js/attachments/lib/basic"
},
"attachments-s3": {
"impl": "@cap-js/attachments/lib/aws-s3",
"vcap": {
"label": "objectstore"
}
}
},
"attachments": {
"scan": true
},
"[development]": {
"attachments": {
"scan": false,
"kind": "db"
}
},
"[production]": {
"attachments": {
"kind": "s3"
}
},
"[hybrid]": {
"attachments": {
"kind": "s3",
"scan": true
}
}
}
}
}