-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (37 loc) · 1.38 KB
/
package.json
File metadata and controls
40 lines (37 loc) · 1.38 KB
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
{
"name": "lambda-testing",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "playwright test",
"test:all": "npm run test:core && npm run test:integration && npm run test:s3",
"test:core": "playwright test --grep-invert \"S3 Reports\" --grep-invert \"Tests de integración\" --grep-invert \"CloudWatch muestra métricas de invocaciones\"",
"test:integration": "playwright test --grep \"Tests de integración con SQS y DynamoDB\" --timeout=60000 --retries=1",
"test:s3": "playwright test tests/S3Reports.spec.ts",
"test:cloudwatch": "playwright test --grep \"CloudWatch muestra métricas de invocaciones\"",
"test:report": "playwright test --reporter=html && playwright show-report"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@aws-sdk/client-s3": "^3.967.0",
"@playwright/test": "^1.58.0",
"@types/node": "^25.0.10",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"dependencies": {
"@aws-sdk/client-cloudwatch": "^3.967.0",
"@aws-sdk/client-cloudwatch-logs": "^3.967.0",
"@aws-sdk/client-dynamodb": "^3.967.0",
"@aws-sdk/client-lambda": "^3.967.0",
"@aws-sdk/client-sqs": "^3.967.0",
"@aws-sdk/lib-dynamodb": "^3.967.0",
"@aws-sdk/s3-request-presigner": "^3.967.0",
"aws-sdk": "^2.1693.0",
"axios": "^1.13.5",
"dotenv": "^17.2.3"
}
}