-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.37 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.37 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
{
"name": "express-exceptions-handler",
"version": "1.0.2",
"description": "Express exceptions handler is a lightweight, highly customizable, and developer-friendly Node.js package designed to simplify and standardize exception handling in your express applications.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/TOPSinfo/exception-handler.git",
"repository": {
"type": "git",
"url": "git+https://github.com/TOPSinfo/exception-handler.git"
},
"files": [
"dist"
],
"exports": {
"import": "./dist/index.esm.js",
"require": "./dist/index.cjs.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node test/server.js",
"build": "npm run build:ts && rollup -c",
"build:ts": "tsc --project tsconfig.json",
"prepublishOnly": "npm run build"
},
"keywords": [
"error-handling",
"express",
"middleware"
],
"author": "Tops Infosolutions",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/express": "^5.0.0",
"@types/node": "^22.10.5",
"rollup": "^4.30.0",
"rollup-plugin-dts": "^6.1.1",
"typescript": "^5.7.2"
},
"dependencies": {
"express": "^4.21.2"
}
}