-
Notifications
You must be signed in to change notification settings - Fork 110
/
package.json
78 lines (78 loc) · 1.78 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "aws-sdk-mock",
"version": "6.2.0",
"description": "Functions to mock the JavaScript aws-sdk",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"lint": "tsc",
"nocov": "ts-mocha test/**/*.spec.ts",
"test": "nyc ts-mocha test/**/*.spec.ts && tsd",
"coverage": "nyc --report html ts-mocha test/**/*.spec.ts && open coverage/index.html",
"prepublishOnly": "npm run build",
"build": "tsup"
},
"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.1231.0",
"neotraverse": "^0.6.15",
"sinon": "^19.0.2"
},
"tsd": {
"directory": "test"
},
"mocha": {
"require": "expectations"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/concat-stream": "^2.0.1",
"@types/expectations": "^0.2.32",
"@types/mocha": "^10.0.6",
"@types/node": "^22.0.0",
"@types/sinon": "^17.0.3",
"c8": "^10.0.0",
"concat-stream": "^2.0.0",
"eslint": "^9.3.0",
"expectations": "^1.0.0",
"is-node-stream": "^1.0.0",
"mocha": "^10.3.0",
"nyc": "^17.0.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"tsd": "^0.31.0",
"tsup": "^8.0.2",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=18.0.0"
}
}