generated from ehmicky/template-javascript
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.68 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.68 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
{
"name": "modern-errors-cli",
"version": "6.0.0",
"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": "`modern-errors` plugin to handle errors in CLI modules",
"keywords": [
"bash",
"browser",
"cli",
"console",
"errors",
"handler",
"javascript",
"library",
"message",
"modern-errors",
"modern-errors-plugin",
"monitoring",
"nodejs",
"plugins",
"shell",
"stack",
"stacktrace",
"terminal",
"timeout",
"typescript"
],
"license": "MIT",
"homepage": "https://www.github.com/ehmicky/modern-errors-cli",
"repository": {
"type": "git",
"url": "git+https://github.com/ehmicky/modern-errors-cli.git"
},
"bugs": {
"url": "https://github.com/ehmicky/modern-errors-cli/issues"
},
"author": "ehmicky <ehmicky@gmail.com> (https://github.com/ehmicky)",
"directories": {
"lib": "src"
},
"dependencies": {
"beautiful-error": "^2.2.0",
"handle-cli-error": "^6.2.0"
},
"devDependencies": {
"@ehmicky/dev-tasks": "^3.0.34",
"@ehmicky/eslint-config": "^20.0.32",
"@ehmicky/prettier-config": "^1.0.6",
"@types/sinon": "^17.0.4",
"figures": "^6.1.0",
"modern-errors-beautiful": "^2.0.1",
"sinon": "^20.0.0",
"test-each": "^7.0.1"
},
"peerDependencies": {
"modern-errors": "^7.1.4"
},
"engines": {
"node": ">=18.18.0"
}
}