-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.07 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.07 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
{
"name": "get-problem-details",
"type": "module",
"version": "2.0.0",
"homepage": "https://github.com/AmielCyber/get-problem-details",
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"description": "Extracts the Problem Details (RFC 7807) object from an unsuccessful server response (fetch/HttpErrorResponse). Eases the extraction of the Problem Details from a non 200 response in a client application.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"keywords": [
"RFC-7807",
"problem-details",
"TypeScript",
"JavaScript",
"React",
"Angular",
"ASP.NET",
"fetch",
"HttpClient",
"server response",
"server error",
"fetch"
],
"author": "Amiel Nava",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.3",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
}
}