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.
51 lines
1.1 KiB
51 lines
1.1 KiB
2 years ago
|
{
|
||
|
"name": "portscanner",
|
||
|
"description": "Asynchronous port scanner for Node.js",
|
||
|
"scripts": {
|
||
|
"coverage": "nyc npm run test",
|
||
|
"test": "ava",
|
||
|
"lint": "standard"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"portscanner",
|
||
|
"port",
|
||
|
"scanner",
|
||
|
"checker",
|
||
|
"status"
|
||
|
],
|
||
|
"version": "2.2.0",
|
||
|
"preferGlobal": false,
|
||
|
"homepage": "https://github.com/baalexander/node-portscanner",
|
||
|
"author": [
|
||
|
"Brandon Alexander <baalexander@gmail.com> (https://github.com/baalexander)",
|
||
|
"Sean Massa <endangeredmassa@gmail.com> (http://massalabs.com)"
|
||
|
],
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "git://github.com/baalexander/node-portscanner.git"
|
||
|
},
|
||
|
"bugs": {
|
||
|
"url": "https://github.com/baalexander/node-portscanner/issues"
|
||
|
},
|
||
|
"directories": {
|
||
|
"lib": "./lib"
|
||
|
},
|
||
|
"main": "./lib/portscanner.js",
|
||
|
"dependencies": {
|
||
|
"async": "^2.6.0",
|
||
|
"is-number-like": "^1.0.3"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"ava": "^0.4.2",
|
||
|
"nyc": "^11.3.0",
|
||
|
"eslint": "^3.10.2",
|
||
|
"eslint-config-standard": "^6.2.1",
|
||
|
"standard": "^8.5.0"
|
||
|
},
|
||
|
"engines": {
|
||
|
"node": ">=0.4",
|
||
|
"npm": ">=1.0.0"
|
||
|
},
|
||
|
"license": "MIT"
|
||
|
}
|