-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.87 KB
/
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
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
67
68
69
70
{
"name": "handle-http-errors",
"version": "1.0.1",
"description": "Type-safe HTTP error handling package providing error classes, standardized responses, error handler, and built-in Express middleware support.",
"author": "Junjie Wu",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/junjie-w/handle-http-errors.git"
},
"homepage": "https://github.com/junjie-w/handle-http-errors#readme",
"bugs": {
"url": "https://github.com/junjie-w/handle-http-errors/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc",
"build:watch": "tsc -w",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepublishOnly": "npm run build",
"prepare": "husky install"
},
"keywords": [
"error-handling",
"http-errors",
"http-error-handler",
"middleware",
"typescript",
"node",
"express",
"error-response"
],
"dependencies": {
"http-status-codes": "^2.3.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^14.0.2",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.17.0",
"express": "^4.21.2",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"semantic-release": "^24.2.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}