-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
44 lines (44 loc) · 1 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
{
"name": "@mapbox/mock-aws-sdk-js",
"version": "1.0.2",
"description": "Create stubbed aws-sdk-js clients for testing purposes",
"main": "index.js",
"engines": {
"node": ">4.0.0"
},
"scripts": {
"pretest": "eslint index.js test",
"test": "nyc tape test/*.test.js",
"coverage": "nyc --reporter html tape test/*.test.js && opener coverage/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mapbox/mock-aws-sdk-js.git"
},
"keywords": [
"aws",
"mock",
"sinon",
"testing"
],
"author": "Mapbox",
"license": "ISC",
"bugs": {
"url": "https://github.com/mapbox/mock-aws-sdk-js/issues"
},
"homepage": "https://github.com/mapbox/mock-aws-sdk-js#readme",
"peerDependencies": {
"aws-sdk": "^2.1691.0"
},
"dependencies": {
"aws-sdk": "^2.1691.0",
"sinon": "^4.4.9",
"traverse": "^0.6.6"
},
"devDependencies": {
"eslint": "^8.33.0",
"nyc": "^15.1.0",
"opener": "^1.4.3",
"tape": "^4.7.0"
}
}