forked from dwyl/aws-sdk-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 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
{
"name": "aws-sdk-mock",
"version": "1.2.0",
"description": "Functions to mock the JavaScript aws-sdk ",
"main": "index.js",
"scripts": {
"nocov": "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 --report html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwyl/aws-sdk-mock.git"
},
"keywords": [
"aws-sdk",
"aws",
"Amazon",
"Lambda",
"API-Gateway",
"S3",
"DynamoDB",
"SNS",
"test",
"mock",
"Node.js"
],
"author": "Nikhila Ravi & Jimmy Ruts",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/dwyl/aws-sdk-mock/issues"
},
"homepage": "https://github.com/dwyl/aws-sdk-mock#readme",
"dependencies": {
"aws-sdk": "^2.2.33",
"sinon": "^1.17.3",
"traverse": "^0.6.6"
},
"devDependencies": {
"istanbul": "^0.4.2",
"tape": "^4.4.0"
}
}