-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.4 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.4 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
{
"name": "axios-error-handler-ts",
"version": "1.3.8",
"description": "A simple helper to handle errors in Axios requests with customizable messages.",
"main": "dist/errorHandler.js",
"types": "dist/errorHandler.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Jszigeti/axios-error-handler.git"
},
"scripts": {
"build": "tsc",
"lint": "eslint .",
"test": "jest",
"prepare": "echo \"Husky is managed automatically\"",
"format": "prettier --write ."
},
"keywords": [
"axios",
"error",
"handler",
"helper",
"typescript"
],
"author": "Jonas Szigeti",
"license": "MIT",
"dependencies": {
"axios": "^1.7.9"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/jest": "^30.0.0",
"eslint": "^9.16.0",
"globals": "^17.0.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"prettier": "^3.7.3",
"ts-jest": "^29.4.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.18.0"
},
"bugs": {
"url": "https://github.com/Jszigeti/axios-error-handler/issues"
},
"homepage": "https://github.com/Jszigeti/axios-error-handler#readme",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*.{js,ts,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
}
}