-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
44 lines (44 loc) · 901 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
39
40
41
42
43
44
{
"name": "arpjs",
"version": "1.2.0",
"description": "Send ARP packets and read ARP tables using Javascript",
"main": "index.js",
"scripts": {
"test": "standard"
},
"dependencies": {
"debug": "^3.1.0",
"getmac": "1.5.0",
"ip": "1.0.2",
"pcap": "mranney/node_pcap"
},
"repository": {
"type": "git",
"url": "git://github.com/skepticfx/arpjs.git"
},
"engines": {
"node": ">= 0.8.0"
},
"author": {
"name": "Ahamed Nafeez",
"email": "ahamed.nafeez@gmail.com"
},
"license": "MIT",
"keywords": [
"arp",
"mitm",
"arp poison",
"man in the midddle",
"gratuitous arp",
"arp spoofing",
"packets"
],
"bugs": {
"url": "https://github.com/skepticfx/arpjs/issues"
},
"homepage": "https://github.com/skepticfx/arpjs",
"readmeFilename": "README.md",
"devDependencies": {
"standard": "14.3.1"
}
}