-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.27 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
{
"name": "jest-fixed-jsdom",
"version": "0.0.9",
"description": "A superset of the JSDOM environment for Jest that respects Node.js globals.",
"main": "./index.js",
"scripts": {
"test": "jest",
"release": "release publish"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mswjs/jest-fixed-jsdom"
},
"homepage": "https://github.com/mswjs/jest-fixed-jsdom#readme",
"bugs": "https://github.com/mswjs/jest-fixed-jsdom/issues",
"author": [
{
"name": "Joel Daros",
"url": "https://github.com/joel-daros"
},
{
"name": "Tobias Hochgürtel",
"url": "https://github.com/tobiashochguertel"
}
],
"contributors": [
{
"name": "JamesZoft",
"url": "https://github.com/JamesZoft"
},
{
"name": "Artem Zakharchenko",
"url": "https://github.com/kettanaito"
}
],
"keywords": [
"testing",
"environment",
"node",
"jest",
"jsdom",
"msw",
"mswjs"
],
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@ossjs/release": "^0.8.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0"
},
"peerDependencies": {
"jest-environment-jsdom": ">=28.0.0"
}
}