-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "jest-mock-extended",
"version": "3.0.7",
"homepage": "https://github.com/marchaos/jest-mock-extended",
"description": "Type safe mocking extensions for jest",
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/marchaos/jest-mock-extended.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"prepare": "npm run build",
"clean": "rimraf coverage lib",
"test": "jest",
"build": "tsc",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"dependencies": {
"ts-essentials": "^10.0.2"
},
"devDependencies": {
"coveralls": "^3.1.1",
"jest": "^29.5.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.5",
"typescript": "^5.0.2"
},
"peerDependencies": {
"@jest/globals": "^28.0.0 || ^29.0.0",
"jest": "^24.0.0 || ^25.0.0 || ^26.0.0 || ^27.0.0 || ^28.0.0 || ^29.0.0",
"typescript": "^3.0.0 || ^4.0.0 || ^5.0.0"
},
"author": "Marc McIntyre <[email protected]>",
"license": "MIT"
}