-
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.14 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.14 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": "http-error-expressjs",
"version": "1.0.0",
"description": "it's a sample library to handle HTTP errors and help you to standardize error handling across the whole application",
"main": "build/index.js",
"module": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build",
"README.md",
"LICENSE"
],
"author": {
"name": "Ahmed Elsharkawy",
"email": "ahmedelsharkawy.fcih@gmail.com",
"url": "https://www.linkedin.com/in/ahmed-elsharkawy-3684a5140/"
},
"scripts": {
"build": "tsc",
"pub": "npm run build && npm publish --access public"
},
"keywords": [
"express",
"http",
"error",
"status code",
"error handling",
"http error handling"
],
"homepage": "https://github.com/AhmedElsharkawyCS/http-error-handling/blob/main/README.md",
"repository": {
"url": "https://github.com/AhmedElsharkawyCS/http-error-handling",
"type": "git"
},
"license": "ISC",
"devDependencies": {
"@types/express": "^4.17.20",
"@types/statuses": "^2.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"express": "^4.18.2",
"statuses": "^2.0.1"
}
}