-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
58 lines (58 loc) · 1.4 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
{
"name": "jest-playback",
"type": "module",
"version": "4.1.0",
"description": "Record and playback HTTP requests from your Jest tests",
"keywords": [
"jest",
"playback",
"record",
"request"
],
"exports": "./lib/index.js",
"repository": "https://github.com/ikatyang/jest-playback",
"homepage": "https://github.com/ikatyang/jest-playback#readme",
"author": {
"name": "Ika",
"email": "ikatyang@gmail.com",
"url": "https://github.com/ikatyang"
},
"license": "MIT",
"scripts": {
"prepack": "pnpm run build",
"lint": "prettier --check .",
"test:vitest": "vitest",
"test:jest": "NODE_OPTIONS=--experimental-vm-modules jest",
"build": "tsc -p tsconfig.build.json",
"release": "standard-version"
},
"dependencies": {
"@mswjs/interceptors": "^0.23.0",
"jest-snapshot-serializer-raw": "^2.0.0",
"mime-types": "^2.1.35"
},
"devDependencies": {
"@types/jest": "29.5.3",
"@types/mime-types": "2.1.1",
"jest": "29.6.1",
"prettier": "3.0.0",
"standard-version": "9.5.0",
"ts-jest": "29.1.1",
"typescript": "5.1.6",
"vite": "4.4.4",
"vitest": "0.33.0"
},
"engines": {
"node": ">=18"
},
"files": [
"/lib/**/*",
"/CHANGELOG.md"
],
"packageManager": "pnpm@8.6.6",
"pnpm": {
"patchedDependencies": {
"@mswjs/interceptors@0.23.0": "patches/@mswjs__interceptors@0.23.0.patch"
}
}
}