-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
57 lines (57 loc) · 1.05 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
50
51
52
53
54
55
56
57
{
"name": "lambda-simulator",
"version": "0.0.19",
"description": "AWS Lambda integration testing tool",
"keywords": [
"aws",
"amazon",
"lambda",
"test",
"bdd",
"tdd"
],
"main": "src/main/index.js",
"scripts": {
"test": "./node_modules/jest/bin/jest.js"
},
"license": "WTFPL",
"repository": {
"type": "git",
"url": "git://github.com/Jezorko/lambda-simulator.git"
},
"engines": {
"node": "^21.1.0"
},
"dependencies": {
"js-base64": "^3.7.5",
"route-parser": "^0.0.5",
"uuid": "^9.0.1"
},
"devDependencies": {
"jest": "^29.7.0"
},
"jest": {
"testEnvironment": "node",
"coverageReporters": [
"text-summary",
"html"
],
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,jsx}"
],
"coveragePathIgnorePatterns": [
"/node_modules",
"coverage",
"src/test"
],
"coverageThreshold": {
"global": {
"statements": 63,
"branches": 61,
"functions": 59,
"lines": 67
}
}
}
}