-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.6 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
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@parthkapoor-dev/better-axios",
"version": "1.0.0",
"description": "A powerful axios wrapper that eliminates repetitive API call patterns with centralized error handling and auth management",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"axios-wrapper": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"prepare": "npm run build",
"prepublishOnly": "npm run test"
},
"keywords": [
"axios",
"api",
"wrapper",
"http",
"client",
"typescript",
"rest",
"error-handling",
"authentication"
],
"author": "Parth Kapoor",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"inquirer": "^8.2.6"
},
"devDependencies": {
"@types/inquirer": "^9.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"axios-mock-adapter": "^2.1.0",
"eslint": "^8.45.0",
"jest": "^29.7.0",
"ts-jest": "^29.3.4",
"typescript": "^5.2.0"
},
"files": [
"dist"
],
"engines": {
"node": ">=16.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/parthkapoor-dev/better-axios.git"
},
"bugs": {
"url": "https://github.com/parthkapoor-dev/better-axios/issues"
},
"homepage": "https://github.com/parthkapoor-dev/better-axios#readme"
}