-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.21 KB
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
{
"name": "curl2axios",
"version": "0.0.3",
"main": "./dist/index.js",
"author": "4lessandrodev",
"license": "MIT",
"peerDependencies": {
"axios": "^1.6.7"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/node": "^20.11.16",
"axios": "^1.6.7",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"scripts": {
"build": "rm -rf dist && tsc",
"test": "ts-node test/index.spec.ts"
},
"files": [
"./dist/index.js",
"./dist/index.d.ts",
"./README.md",
"./package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/4lessandrodev/curl2axios.git"
},
"bugs": {
"url": "https://github.com/4lessandrodev/curl2axios/issues"
},
"homepage": "https://github.com/4lessandrodev/curl2axios/tree/main/docs",
"keywords": [
"Curl",
"Dev Request",
"Axios",
"Debug"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"default": "./dist/index.js"
},
"./umd": "./dist/index.js"
},
"description": "This lib provide a interceptor to generate a curl from axios request",
"types": "./dist/index.d.js",
"module": "./dist/index.js",
"readme": "./README.md"
}