-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 909 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 909 Bytes
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
{
"name": "@lvigil/err",
"version": "1.3.0",
"description": "Enhanced Error with message history, context dict, and flag dict — flat, not chained, designed for logging.",
"type": "module",
"author": "Ben P.P. Tung",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/benpptung/err.git"
},
"exports": {
".": "./src/err.js"
},
"scripts": {
"test": "mocha",
"example-cause": "node example/cause-chain/run.js | npx pino-pretty",
"example-onerr": "node example/onerr-flat/run.js | npx pino-pretty"
},
"devDependencies": {
"eslint": "9.39.1",
"expect.js": "^0.3.1",
"mocha": "^10.2.0"
},
"keywords": [
"error",
"err",
"Err",
"OnErr",
"error-handling",
"message-history",
"context",
"logging",
"debugging",
"flat",
"rethrow",
"error-wrapper"
],
"types": "./err.d.ts"
}