generated from Richienb/node-module-boilerplate
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.22 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
{
"name": "cross-exit",
"version": "1.0.0",
"description": "Gracefully terminate a script in Node.js or browsers.",
"repository": "https://github.com/Richienb/cross-exit.git",
"author": "Richie Bendall <richiebendall@gmail.com>",
"license": "MIT",
"main": "index.js",
"browser": "browser.js",
"files": [
"index.js",
"index.d.ts",
"browser.js"
],
"engines": {
"node": ">=4"
},
"scripts": {
"lint": "xo",
"test": "yarn lint && ava"
},
"keywords": [
"exit",
"process",
"browser",
"error",
"terminate",
"graceful",
"silent",
"break",
"scope",
"catch",
"window",
"document",
"node",
"replacement",
"ponyfill"
],
"dependencies": {},
"devDependencies": {
"ava": "^2.4.0",
"eslint-config-richienb": "^0.2.3",
"xo": "^0.25.3"
},
"resolutions": {
"eslint": "^6.8.0"
},
"xo": {
"extends": "richienb",
"rules": {
"no-process-exit": 0,
"unicorn/no-process-exit": 0,
"unicorn/prefer-add-event-listener": 0
}
}
}