-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.17 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
{
"version": "1.3.1",
"name": "pretty-exceptions",
"description": "Pretty and more helpful uncaught exceptions, automatically.",
"author": "Ahmad Nassri <ahmad@ahmadnassri.com> (https://www.ahmadnassri.com/)",
"homepage": "https://github.com/ahmadnassri/node-pretty-exceptions",
"repository": {
"type": "git",
"url": "https://github.com/ahmadnassri/node-pretty-exceptions.git"
},
"bugs": {
"url": "https://github.com/ahmadnassri/node-pretty-exceptions/issues"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/ahmadnassri"
},
"license": "MIT",
"keywords": [
"pretty",
"exception",
"format",
"error"
],
"engines": {
"node": ">=14"
},
"files": [
"lib",
"index.js",
"source.js",
"native.js",
"source-native.js"
],
"main": "index.js",
"scripts": {
"test": "tap test --no-coverage",
"test:watch": "tap test --watch",
"test:ci": "tap test --100",
"test:report": "opener coverage/lcov-report/index.html"
},
"dependencies": {
"chalk": "^4.1.2",
"error-stack-parser": "^2.1.4",
"strip-ansi": "^6.0.1"
},
"devDependencies": {
"tap": "^18.5.2"
}
}