-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.65 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
{
"name": "jest-runner-tsd",
"version": "6.0.0",
"description": "Run your TypeScript type tests using Jest",
"keywords": [
"check",
"checker",
"easy",
"jest",
"runner",
"tests",
"tsd",
"typings",
"types",
"typescript"
],
"license": "MIT",
"repository": "https://github.com/jest-community/jest-runner-tsd.git",
"main": "src/index.js",
"files": [
"src/",
"!src/__tests__/"
],
"contributors": [
"Karan Sanjeev Nair <yo@alphaman.me> (https://alphaman.me)",
"Saurabh Agarwala <saur.agarwala@gmail.com>"
],
"scripts": {
"lint": "eslint .",
"test": "jest",
"typecheck": "yarn tsc && yarn tsc -p e2e && yarn tsc -p src/__tests__"
},
"dependencies": {
"@babel/code-frame": "^7.15.8",
"chalk": "^4.1.2",
"create-jest-runner": "^0.12.0",
"tsd-lite": "^0.8.0"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@jest/test-result": "^29.1.0",
"@tsconfig/node16": "^16.1.0",
"@tsd/typescript": "~5.6.0",
"@types/babel__code-frame": "^7.0.3",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"babel-jest": "^29.1.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"execa": "^5.1.1",
"jest": "^29.1.0",
"prettier": "^3.0.0",
"typescript": "~5.6.0"
},
"peerDependencies": {
"@tsd/typescript": "4.x || 5.x"
},
"prettier": {
"arrowParens": "avoid",
"singleQuote": true
},
"packageManager": "yarn@3.8.4",
"engines": {
"node": ">=16"
}
}