-
-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
58 lines (58 loc) · 1.02 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
{
"name": "is-reachable",
"version": "5.2.1",
"description": "Check if servers are reachable",
"license": "MIT",
"repository": "sindresorhus/is-reachable",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"engines": {
"node": ">=10"
},
"scripts": {
"test": "xo && ava test.js && tsd"
},
"files": [
"index.js",
"index.d.ts",
"browser.js"
],
"keywords": [
"browser",
"online",
"offline",
"network",
"connected",
"connectivity",
"internet",
"is",
"has",
"detect",
"reachable",
"reachability",
"server",
"host",
"accessible",
"socket"
],
"dependencies": {
"arrify": "^2.0.1",
"got": "^11.7.0",
"is-port-reachable": "^3.0.0",
"p-any": "^3.0.0",
"p-timeout": "^3.2.0",
"prepend-http": "^3.0.1",
"router-ips": "^1.0.0",
"url-parse": "^1.5.10"
},
"devDependencies": {
"ava": "^2.4.0",
"tsd": "^0.13.1",
"xo": "^0.34.0"
},
"browser": "browser.js"
}