-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 779 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 779 Bytes
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": "arpping",
"version": "4.0.0",
"description": "Discover and search for internet-connected devices (locally) using ping and arp",
"main": "dist/index.js",
"dependencies": {
"child_process": "^1.0.2",
"netmask": "^2.0.1",
"os": "^0.1.1"
},
"devDependencies": {
"@types/node": "^18.0.3",
"ts-loader": "^9.3.1",
"typescript": "^4.7.4"
},
"browser": {
"fs": false,
"child_process": false
},
"scripts": {
"build": "tsc",
"test": "node test.js example"
},
"keywords": [
"ping",
"arp",
"nmap",
"ip",
"mac",
"scan"
],
"repository": {
"type": "git",
"url": "https://github.com/haf-decent/arpping.git"
},
"author": "Ryan Hafner <r.hafner20@gmail.com>",
"license": "MIT"
}