-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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": "error-cure",
"version": "1.0.9",
"description": "Error-Cure is a lightweight Node.js library for efficient error management. It includes custom error classes like AppError and ValidationError, Express middleware for centralized error handling, and utilities for logging and managing exceptions. Ideal for building scalable, resilient APIs with clean and structured error-handling in Node.js and Express applications.",
"main": "src/index.js",
"scripts": {
"test": "jest",
"build": "babel src -d dist",
"prepublishOnly": "npm run test"
},
"keywords": [
"error-cure",
"error-handling",
"nodejs",
"express",
"error-logging",
"nodejs-errors",
"express-error-middleware",
"error-management",
"custom-errors"
],
"author": "Akshay Panchivala",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/AkshayPanchivala/error-cure"
},
"homepage": "https://github.com/AkshayPanchivala/error-cure#readme",
"jest": {
"testMatch": [
"**/tests/**/*.test.js",
"**/?(*.)+(spec|test).[tj]s?(x)"
],
"testPathIgnorePatterns": [
"/node_modules/"
]
},
"dependencies": {
"fs": "^0.0.1-security",
"jest": "^29.7.0",
"path": "^0.12.7"
}
}