-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 920 Bytes
/
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
{
"name": "@impart-security/aws-log-forwarder-serverless",
"version": "0.3.1",
"description": "Lambda function to stream ec2 loadbalancer access logs and cloudwatch logs",
"main": "index.js",
"type": "module",
"author": "Impart Security",
"license": "Apache-2.0",
"scripts": {
"test": "echo 'No test specified'",
"dep-check": "pnpm depcheck-custom",
"circular-check": "madge --circular .",
"type-check": "tsc --noEmit",
"format": "prettier . --write --cache",
"lint": "eslint ."
},
"dependencies": {
"@aws-sdk/client-s3": "3.723.0",
"@aws-sdk/client-secrets-manager": "3.723.0",
"@aws-sdk/client-ssm": "3.723.0",
"axios": "1.7.9"
},
"devDependencies": {
"@eslint/js": "9.17.0",
"eslint": "9.17.0",
"globals": "15.14.0",
"prettier": "3.4.2"
},
"nx": {
"projectType": "application",
"tags": [
"scope:javascript"
]
}
}