-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2 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
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
{
"name": "base-error-class",
"version": "1.0.1",
"private": false,
"description": "A lightweight base error class for Node.js offering structured application errors, message templating, error codes, cause chaining, and custom domain contexts.",
"keywords": [
"augments",
"base",
"base-error",
"cause",
"cross-platform",
"custom",
"custom-error",
"error",
"error-class",
"error-codes",
"error-cause",
"error-handling",
"errors",
"esm",
"exception",
"extends",
"javascript",
"node",
"stacktrace",
"stack-trace",
"structured-errors",
"throw",
"try-catch"
],
"homepage": "https://github.com/vgbr-dev/base-error-class#readme",
"bugs": {
"url": "https://github.com/vgbr-dev/base-error-class/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vgbr-dev/base-error-class.git"
},
"author": {
"name": "Victor Giovanni Beltrán Rodríguez",
"email": "vgbr.dev@gmail.com",
"url": "https://vgbr-dev.blogspot.com"
},
"type": "module",
"license": "MIT",
"exports": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./index.cjs"
},
"imports": {
"#baseerror": "./source/BaseError.mjs"
},
"scripts": {
"test": "cross-env NODE_ENV=test node --test test/*.test.mjs",
"lint": "npx eslint .",
"prepare": "husky",
"prepublishOnly": "npm test"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/compat": "^1.2.9",
"@eslint/eslintrc": "^3.3.1",
"cross-env": "^7.0.3",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.6.14",
"eslint-plugin-prettier": "^5.4.0",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"prettier": "^3.5.0"
},
"engines": {
"node": ">=22"
}
}