-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 935 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 935 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
39
40
41
42
{
"name": "macfromip",
"version": "1.1.0",
"description": "On given an IP Address, will attempt to identify that IP's MAC address.",
"author": "bcamarneiro <camarneirobruno@gmail.com>",
"contributors": [
{
"name": "Paul Cook"
},
{
"name": "Sean Nessworthy",
"email": "sean@nessworthy.me"
}
],
"main": "macfromip.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/bcamarneiro/macfromip.git"
},
"keywords": [
"MAC",
"IP",
"Address"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bcamarneiro/macfromip/issues"
},
"homepage": "https://github.com/bcamarneiro/macfromip",
"scripts": {
"build": "babel src -d lib",
"test": "node test/test-macfromip.js"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5"
}
}