forked from dwyl/aws-sdk-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.21 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
48
49
50
51
52
{
"name": "aws-sdk-mock",
"version": "5.1.0",
"description": "Functions to mock the JavaScript aws-sdk ",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"lint": "eslint index.js test/index.test.js",
"nocov": "tap test/*.js",
"test": "nyc --reporter=lcov tap ./test/*.js",
"coverage": "nyc tap ./test/*.js && nyc 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 & Friends!",
"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.637.0",
"sinon": "^9.0.1",
"traverse": "^0.6.6"
},
"devDependencies": {
"concat-stream": "^2.0.0",
"eslint": "^6.8.0",
"is-node-stream": "^1.0.0",
"nyc": "^15.0.0",
"tap": "^14.10.6"
}
}