-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.16 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
{
"name": "node-async-handler",
"version": "0.0.1",
"description": "Async Error Handling Middleware for Express with ESM support.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "vitest --no-watch && tsc",
"test": "vitest --no-watch",
"test:dev": "vitest --watch",
"test:coverage": "vitest run --coverage",
"prepare": "husky install"
},
"keywords": [
"async",
"error",
"handler",
"express",
"express-async-handler",
"express-async-errors",
"express-async-error-handler",
"http",
"error-handler"
],
"private": false,
"author": "MURANGWA Pacifique",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pacifiquem/node-async-handler.git"
},
"bugs": {
"url": "https://github.com/pacifiquem/node-async-handler/issues"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^16.11.9",
"express": "^4.18.2",
"husky": "^8.0.3",
"typescript": "^4.5.4",
"vitest": "^1.1.1"
}
}