-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 806 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 806 Bytes
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
{
"name": "attachmentav-api-bucket-scan-cdk-construct",
"description": "A CDK construct for integrating attachmentAV malware scanning with S3 buckets",
"version": "0.1.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"test": "jest"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.159",
"@types/jest": "^30",
"@types/node": "^20.19.24",
"aws-cdk-lib": "^2.232.2",
"constructs": "^10.0.0",
"jest": "^30",
"ts-jest": "^29",
"typescript": "~5.9.3"
},
"peerDependencies": {
"aws-cdk-lib": "^2.232.2",
"constructs": "^10.0.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.716.0",
"@aws-sdk/client-ssm": "^3.716.0",
"@aws-sdk/s3-request-presigner": "^3.716.0"
}
}