forked from scottnonnenberg-signal/electron-unhandled
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 844 Bytes
/
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
{
"name": "electron-unhandled",
"version": "1.1.0",
"description": "Catch unhandled errors and promise rejections in your Electron app",
"license": "MIT",
"repository": "sindresorhus/electron-unhandled",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js"
],
"keywords": [
"electron",
"unhandled",
"error",
"exception",
"promise",
"rejection",
"uncaught",
"handler",
"stack",
"report",
"log",
"logger",
"debug",
"debugging"
],
"dependencies": {
"clean-stack": "^1.3.0",
"ensure-error": "^1.0.0",
"lodash.debounce": "^4.0.8"
},
"devDependencies": {
"ava": "*",
"electron": "^1.7.0",
"execa": "^0.8.0",
"xo": "*"
},
"xo": {
"envs": [
"node",
"browser"
]
}
}