-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 902 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
{
"name": "@freewall/axios-console-logger",
"version": "0.2.0",
"license": "MIT",
"author": "Michal Vaněk",
"private": false,
"repository": "https://github.com/FreeWall/axios-console-logger",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"clean": "rimraf src docs .github .editorconfig .prettierrc .gitignore tsconfig.json",
"release": "npm run lint && npm run build && npm run clean"
},
"dependencies": {
"axios": "^1.2.6"
},
"devDependencies": {
"prettier": "2.7.1",
"rimraf": "^4.4.0",
"tsup": "^6.6.3",
"tsx": "^3.12.3",
"typescript": "^4.9.3"
},
"ct3aMetadata": {
"initVersion": "5.15.0"
},
"keywords": [
"axios",
"axios-interceptor",
"http",
"logging",
"debug",
"node"
]
}