-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.29 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
51
52
53
54
55
56
57
58
59
60
{
"name": "throw-rejects",
"version": "1.0.0",
"description": "Throw unhandled Promise rejections",
"homepage": "https://github.com/sholladay/throw-rejects",
"main": "index.js",
"author": {
"name": "Seth Holladay",
"url": "https://seth-holladay.com",
"email": "me@seth-holladay.com"
},
"scripts": {
"test": "xo && ava"
},
"repository": {
"type": "git",
"url": "git@github.com:sholladay/throw-rejects.git"
},
"bugs": {
"url": "https://github.com/sholladay/throw-rejects/issues",
"email": "me@seth-holladay.com"
},
"engines": {
"node": ">=6"
},
"license": "MPL-2.0",
"files": [
"register.js",
"index.js"
],
"devDependencies": {
"ava": "^0.22.0",
"eslint-config-tidy": "^0.5.0",
"execa": "^0.8.0",
"xo": "^0.18.0"
},
"keywords": [
"debug",
"debugging",
"verbose",
"throw",
"catch",
"handle",
"handler",
"unhandled",
"uncaught",
"promise",
"promises",
"reject",
"rejection",
"error",
"errors",
"exception",
"exceptions",
"crash"
],
"xo": {
"extend": "tidy"
}
}