-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·38 lines (38 loc) · 1.07 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
{
"name": "postman-api-testing-sam",
"description": "Severless application model for api testing using postman collections",
"version": "0.0.1",
"private": true,
"devDependencies": {
"@types/node": "^20.6.2",
"jest": "^29.2.1",
"typescript": "^5.2.2"
},
"scripts": {
"build": "node_modules/typescript/bin/tsc",
"watch": "node_modules/typescript/bin/tsc -w --preserveWatchOutput",
"test": "jest"
},
"jest": {
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)",
"**/__tests__/**/*.mjs?(x)",
"**/?(*.)+(spec|test).mjs?(x)"
],
"moduleFileExtensions": [
"mjs",
"js",
"ts"
]
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.414.0",
"aws-sdk": "^2.1460.0",
"lambda-log": "^3.1.0",
"newman": "^5.3.2",
"newman-reporter-htmlextra": "^1.22.11",
"node-cache": "^5.1.2",
"safe-flat": "^2.0.2"
}
}