forked from joskark/lambda-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.21 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
58
59
60
61
62
63
{
"name": "lambda-tester",
"version": "3.5.0",
"description": "Unit/Integration tests for AWS Lambda handlers",
"main": "lib/index.js",
"keywords": [
"AWS",
"Lambda",
"unit",
"test",
"mocha",
"TDD",
"unit test",
"unit testing",
"integration test",
"integration testing",
"serverless",
"environment",
"variables",
"x-ray"
],
"engines": {
"node": ">=8.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/vandium-io/lambda-tester.git"
},
"scripts": {
"test": "nyc mocha --recursive"
},
"nyc": {
"check-coverage": true,
"include": [
"lib/**/*.js"
],
"reporter": [
"lcov",
"text"
]
},
"author": "Vandium Software Inc.",
"license": "BSD-3-Clause",
"devDependencies": {
"aws-xray-sdk-core": "^1.3.0",
"bluebird": "^3.5.1",
"chai": "^4.1.2",
"freshy": "^1.0.2",
"mocha": "^5.2.0",
"nyc": "^11.9.0",
"proxyquire": "^1.8.0",
"sinon": "^4.0.0"
},
"dependencies": {
"app-root-path": "^2.1.0",
"dotenv": "^5.0.0",
"dotenv-json": "^1.0.0",
"lambda-leak": "^2.0.0",
"semver": "^5.5.0",
"uuid": "^3.3.2",
"vandium-utils": "^1.1.1"
}
}