-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.11 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
{
"name": "nestjs-convert-to-curl",
"version": "2.0.7",
"description": "Nestjs convert Axios Error to CURL",
"types": "dist/src/converter.d.ts",
"main": "dist/src/converter.js",
"files": [
"dist/src/**/*",
"README.md"
],
"scripts": {
"build": "tsc",
"test": "jest"
},
"exports": {
".": {
"import": "./dist/src/converter.js",
"require": "./dist/src/converter.js",
"types": "./dist/src/converter.d.ts"
},
"./package.json": "./package.json"
},
"author": "Mike Lima <mike.rodrigues.lima@gmail.com>",
"homepage": "https://github.com/mikemajesty/nestjs-convert-to-curl#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mikemajesty/nestjs-convert-to-curl.git"
},
"license": "MIT",
"dependencies": {
"axios": "^1.13.2",
"ts-node": "^10.9.2",
"uuid": "^13.0.0"
},
"bugs": {
"url": "https://github.com/mikemajesty/convert-axios-error-to-curl/issues"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/uuid": "^11.0.0",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}