-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
33 lines (33 loc) · 920 Bytes
/
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
{
"name": "aws-lambda-test-utils",
"version": "1.3.0",
"description": "Test your AWS Lambda Functions for reals!",
"main": "index.js",
"scripts": {
"dev": "tape test/*.js",
"test": "istanbul cover ./node_modules/tape/bin/tape ./test/*.js",
"coverage": "istanbul cover ./node_modules/tape/bin/tape ./test/*.js && istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwyl/aws-lambda-test-utils.git"
},
"keywords": [
"lambda",
"testing",
"mock",
"context",
"event",
"aws"
],
"author": "Nikhi & Nelson :-)",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/dwyl/aws-lambda-test-utils/issues"
},
"homepage": "https://github.com/dwyl/aws-lambda-test-utils#readme",
"devDependencies": {
"istanbul": "^0.4.2",
"tape": "^4.4.0"
}
}