You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
978 B
58 lines
978 B
{
|
|
"name": "is-reachable",
|
|
"version": "4.0.0",
|
|
"description": "Check if servers are reachable",
|
|
"license": "MIT",
|
|
"repository": "sindresorhus/is-reachable",
|
|
"author": {
|
|
"name": "Sindre Sorhus",
|
|
"email": "sindresorhus@gmail.com",
|
|
"url": "sindresorhus.com"
|
|
},
|
|
"engines": {
|
|
"node": ">=8"
|
|
},
|
|
"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": "^9.6.0",
|
|
"is-port-reachable": "^2.0.1",
|
|
"p-any": "^2.1.0",
|
|
"p-timeout": "^3.2.0",
|
|
"prepend-http": "^3.0.1",
|
|
"router-ips": "^1.0.0",
|
|
"url-parse": "^1.4.7"
|
|
},
|
|
"devDependencies": {
|
|
"ava": "^2.4.0",
|
|
"tsd": "^0.8.0",
|
|
"xo": "^0.24.0"
|
|
},
|
|
"browser": "browser.js"
|
|
}
|