forked from vespaiach/axios-fetch-adapter
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.38 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": "konfig-axios-fetch-adapter",
"version": "1.6.4",
"description": "Fetch adapter for axios written in TypeScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "yarn tsc",
"release": "konfig-release-it",
"release-ci": "konfig-release-it --ci",
"test": "jest",
"vite": "vite",
"dev": "sh dev.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/konfig-dev/konfig-axios-fetch-adapter.git"
},
"keywords": [
"axios",
"adapter",
"fetch"
],
"author": "engineering@konfigthis.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/konfig-dev/konfig-axios-fetch-adapter/issues"
},
"homepage": "https://github.com/konfig-dev/konfig-axios-fetch-adapter#readme",
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^18.15.11",
"axios": "^1.6.4",
"eventsource-parser": "^1.0.0",
"jest": "^29.6.1",
"konfig-release-it": "^15.5.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.3",
"vite": "^2.8.0"
},
"release-it": {
"hooks": {
"before:init": [
"yarn build"
]
}
},
"peerDependencies": {
"axios": ">=1.6.4"
},
"packageManager": "yarn@3.5.0",
"dependencies": {
"node-fetch": "^2.6.7",
"web-streams-polyfill": "^3.2.1"
}
}