-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
49 lines (49 loc) · 1.41 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
{
"name": "serverless-apigateway-log-retention",
"version": "1.1.0",
"description": "A plugin for the Serverless framework which configures ApiGateway access adn execution log retention.",
"author": "Deepak Thankachan, DVLA",
"license": "MIT",
"homepage": "https://github.com/dvla/serverless-apigateway-log-retention",
"main": "src/serverlessApigatewayLogRetentionPlugin.js",
"repository": {
"type": "git",
"url": "https://github.com/dvla/serverless-apigateway-log-retention.git"
},
"bugs": {
"url": "https://github.com/dvla/serverless-apigateway-log-retention/issues"
},
"keywords": [
"serverless",
"aws",
"api",
"gateway",
"logging",
"log",
"retention"
],
"scripts": {
"test": "jest"
},
"dependencies": {
"@aws-sdk/client-api-gateway": "^3.421.0",
"@aws-sdk/client-cloudwatch-logs": "^3.421.0",
"@aws-sdk/credential-provider-ini": "^3.421.0",
"@smithy/node-http-handler": "^2.1.6",
"proxy-agent": "^6.3.0"
},
"devDependencies": {
"aws-sdk-client-mock": "^3.0.0",
"aws-sdk-client-mock-jest": "^3.0.0",
"jest": "^29.7.0"
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"<rootDir>/src/__test__/*.test.js"
]
},
"engines": {
"node": ">=8.10.0"
}
}