-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
38 lines (38 loc) · 923 Bytes
/
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
{
"name": "network-list",
"version": "1.1.4",
"description": "List all network devices with hostname and vendor",
"main": "lib/index.js",
"scripts": {
"build": "babel src --presets babel-preset-es2015 --out-dir lib",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/suskind/network-list.git"
},
"keywords": [
"network",
"scan",
"dns",
"arp",
"ping"
],
"author": "Claudio Gamboa <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/suskind/network-list/issues"
},
"homepage": "https://github.com/suskind/network-list#readme",
"dependencies": {
"async": "^2.6.0",
"ip": "^1.1.5",
"node-arp": "^1.0.5",
"ping": "^0.2.2",
"request": "^2.88.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1"
}
}