-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1014 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
34
35
36
37
38
{
"name": "ts-jest-mock-examples",
"version": "0.1.0",
"description": "Examples using Typescript and Jest to mock external libs as well as yours.",
"main": "index.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/102nd-floor/ts-jest-mock-examples.git"
},
"keywords": [
"typescript",
"jest",
"mock"
],
"author": "wenyan.li",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/102nd-floor/ts-jest-mock-examples/issues"
},
"homepage": "https://github.com/102nd-floor/ts-jest-mock-examples#readme",
"dependencies": {
"@tsconfig/node14": "^1.0.1",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.4",
"@aws-sdk/client-s3": "^3.3.0",
"@aws-sdk/node-http-handler": "^3.3.0",
"@aws-sdk/types": "^3.3.0",
"jest": "^27.0.4",
"prettier": "^2.3.1",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.4"
}
}