-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1007 Bytes
/
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
{
"name": "@jota-one/http-client",
"version": "1.6.2",
"type": "module",
"main": "dist/index.cjs",
"module": "./index.js",
"types": "./index.d.ts",
"files": [
"dist/*",
"lib/*",
"index.d.ts",
"index.js"
],
"exports": {
".": {
"import": "./index.js",
"require": "./dist/index.cjs"
}
},
"description": "Axios-based HTTP client",
"scripts": {
"build": "node build.cjs",
"test": "vitest"
},
"author": "Juniors at Work",
"contributors": [],
"repository": {
"type": "git",
"url": "https://github.com/jota-one/http-client.git"
},
"license": "MIT",
"dependencies": {
"@jota-one/hateoas-parser": "^1.3.0",
"axios": "^1.3.4",
"lodash.merge": "^4.6.2",
"lodash.clonedeep": "^4.5.0"
},
"devDependencies": {
"@types/node": "^18.15.11",
"auto": "^10.43.0",
"axios-mock-adapter": "^1.21.2",
"esbuild": "^0.15.18",
"jsdom": "^22.1.0",
"typescript": "^5.0.3",
"vitest": "^0.29.8"
}
}