-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.66 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
{
"name": "@scaleleap/jest-polly",
"description": "Integrate Jest with PollyJS for a smooth experience of HTTP recording.",
"license": "MIT",
"author": {
"name": "Roman Filippov",
"email": "roman@scaleleap.com",
"url": "https://www.scaleleap.com/"
},
"homepage": "https://github.com/ScaleLeap/jest-polly#readme",
"repository": {
"type": "git",
"url": "git@github.com:ScaleLeap/jest-polly.git"
},
"version": "1.6.10",
"main": "lib/index.js",
"scripts": {
"prebuild": "npm run clean",
"build": "tsc --build tsconfig.build.json",
"clean": "rimraf lib",
"lint": "npx eslint --ext .js,.ts src/",
"semantic-release": "npx @scaleleap/semantic-release-config",
"test": "jest"
},
"types": "lib/index.d.ts",
"dependencies": {
"@pollyjs/adapter-node-http": "6.0.6",
"@pollyjs/core": "6.0.6",
"@pollyjs/persister-fs": "6.0.6",
"ci-info": "3.9.0",
"env-var": "7.4.1",
"lodash.merge": "4.6.2",
"setup-polly-jest": "0.11.0",
"ts-is-present": "1.2.2",
"type-fest": "4.7.0"
},
"devDependencies": {
"@types/jest": "29.5.7",
"@types/lodash.merge": "4.6.9",
"@types/node": "18.18.8",
"@types/node-fetch": "2.6.9",
"@types/setup-polly-jest": "0.5.5",
"@scaleleap/utils": "1.9.98",
"jest": "29.7.0",
"node-fetch": "2.7.0",
"rimraf": "5.0.5",
"ts-jest": "29.1.1",
"tsconfigs": "4.0.2",
"typescript": "5.1.6"
},
"keywords": [
"fetch",
"http",
"jest",
"polly",
"pollyjs",
"record",
"replay",
"snapshot"
],
"publishConfig": {
"access": "public"
},
"release": {
"extends": "@scaleleap/semantic-release-config"
}
}