-
-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
84 lines (84 loc) · 2.34 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "axios-cookiejar-support",
"version": "5.0.3",
"description": "Add tough-cookie support to axios.",
"keywords": [
"axios",
"cookie",
"cookiejar",
"cookies",
"tough-cookie"
],
"homepage": "https://github.com/3846masa/axios-cookiejar-support#readme",
"bugs": {
"url": "https://github.com/3846masa/axios-cookiejar-support/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/3846masa/axios-cookiejar-support.git"
},
"funding": "https://github.com/sponsors/3846masa",
"license": "MIT",
"author": "3846masa <[email protected]>",
"main": "dist/index.js",
"browser": "noop.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"noop.js",
"!**/__tests__"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc --project tsconfig.build.json",
"format": "pnpm run --sequential \"/^format:.*/\"",
"format:eslint": "eslint --fix .",
"format:prettier": "prettier --write .",
"prelint": "pnpm run build",
"lint": "pnpm run \"/^lint:.*/\"",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"lint:tsc": "tsc --noEmit",
"semantic-release": "semantic-release",
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" jest"
},
"dependencies": {
"http-cookie-agent": "^6.0.6"
},
"devDependencies": {
"@3846masa/configs": "github:3846masa/configs#c7d481b65574395bfce1006feb0eea450c34de8a",
"@babel/plugin-proposal-explicit-resource-management": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@jest/globals": "29.7.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/eslint": "9.6.1",
"@types/node": "18.19.67",
"axios": "1.7.8",
"babel-jest": "29.7.0",
"disposablestack": "1.1.6",
"jest": "29.7.0",
"rimraf": "5.0.10",
"semantic-release": "19.0.5",
"tough-cookie": "5.0.0",
"typescript": "5.7.2"
},
"peerDependencies": {
"axios": ">=0.20.0",
"tough-cookie": ">=4.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
},
"pnpm": {
"patchedDependencies": {
"@semantic-release/[email protected]": "patches/@[email protected]"
}
}
}