forked from vandium-io/lambda-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.04 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
41
42
43
44
45
46
47
{
"name": "lambda-tester",
"version": "2.6.0",
"description": "Unit/Integration tests for AWS Lambda handlers",
"main": "lib/index.js",
"keywords": [
"AWS",
"Lambda",
"test",
"mocha",
"TDD",
"unit test",
"unit testing",
"integration test",
"integration testing",
"serverless",
"environment",
"variables"
],
"engines": {
"node": ">=4.3.2"
},
"repository": {
"type": "git",
"url": "https://github.com/vandium-io/lambda-tester.git"
},
"scripts": {
"test": "./node_modules/.bin/mocha --recursive",
"coverage": "./node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha -- -R spec --recursive"
},
"author": "Vandium Software Inc.",
"license": "BSD-3-Clause",
"devDependencies": {
"chai": "^3.5.0",
"freshy": "^1.0.2",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"sinon": "^1.17.3"
},
"dependencies": {
"app-root-path": "^1.0.0",
"dotenv": "^2.0.0",
"lambda-leak": "^1.0.0",
"node-uuid": "^1.4.7",
"vandium-utils": "^1.0.0"
}
}