-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 921 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": "@wistudent/jest-each-improved-types",
"version": "2.1.0",
"description": "Using recursive conditional types from typescript 4.1 to improve typings of table driven jest-each tests.",
"author": "Tobias Trumm",
"license": "MIT",
"scripts": {
"test": "jest -c jest.config.tsd.js"
},
"devDependencies": {
"@jest/globals": "^29.4.1",
"@jest/types": "^29.4.1",
"@tsd/typescript": "^5.2.2",
"jest": "^29.4.1",
"jest-runner-tsd": "^6.0.0"
},
"peerDependencies": {
"@jest/globals": ">=29.4.1",
"@jest/types": "^29.4.1",
"typescript": ">=4.1.x"
},
"main": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"default": "./index.js"
}
},
"files": [
"index.js",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/WIStudent/jest-each-improved-types.git"
}
}