-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
86 lines (86 loc) · 2.1 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "modern-errors",
"version": "7.0.1",
"type": "module",
"exports": {
"types": "./build/src/main.d.ts",
"default": "./build/src/main.js"
},
"main": "./build/src/main.js",
"types": "./build/src/main.d.ts",
"files": [
"build/src/**/*.{js,json,d.ts}",
"!build/src/**/*.test.js",
"!build/src/{helpers,fixtures}"
],
"sideEffects": false,
"scripts": {
"test": "gulp test"
},
"description": "Handle errors in a simple, stable, consistent way",
"keywords": [
"nodejs",
"javascript",
"stacktrace",
"library",
"typescript",
"browser",
"errors",
"monitoring",
"error-monitoring",
"message",
"error-handler",
"error-handling",
"error",
"code-quality",
"cause",
"error-reporting",
"error-classes",
"exceptions",
"plugins",
"framework"
],
"license": "MIT",
"homepage": "https://www.github.com/ehmicky/modern-errors",
"repository": {
"type": "git",
"url": "git+https://github.com/ehmicky/modern-errors.git"
},
"bugs": {
"url": "https://github.com/ehmicky/modern-errors/issues"
},
"author": "ehmicky <[email protected]> (https://github.com/ehmicky)",
"directories": {
"example": "examples",
"lib": "src"
},
"dependencies": {
"error-class-utils": "^4.0.0",
"error-custom-class": "^10.0.0",
"filter-obj": "^6.1.0",
"is-plain-obj": "^4.1.0",
"merge-error-cause": "^5.0.0",
"normalize-exception": "^4.0.0",
"set-error-message": "^3.0.0",
"set-error-props": "^6.0.0",
"set-error-stack": "^3.0.0"
},
"devDependencies": {
"@ehmicky/dev-tasks": "^3.0.27",
"@ehmicky/eslint-config": "^20.0.19",
"@ehmicky/prettier-config": "^1.0.4",
"is-error-instance": "^3.0.0",
"modern-errors-bugs": "^5.0.0",
"modern-errors-clean": "^6.0.0",
"modern-errors-cli": "^5.0.0",
"modern-errors-http": "^5.0.0",
"modern-errors-process": "^5.0.0",
"modern-errors-serialize": "^6.1.0",
"modern-errors-switch": "^4.0.0",
"modern-errors-winston": "^5.0.1",
"test-each": "^7.0.0"
},
"engines": {
"node": ">=18.18.0"
}
}