-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 879 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
{
"name": "subnet-info",
"version": "1.0.1",
"description": "Takes an IPv4 CIDR network address and returns network size, broadcast address, subnet mask, start IP, end IP, and network address",
"scripts": {
"test": "mocha"
},
"files": [
"index"
],
"keywords": [
"CIDR",
"network",
"subnet",
"IPv4"
],
"homepage": "https://github.com/stevemilburn/subnet-info",
"bugs": "https://github.com/stevemilburn/subnet-info/issues",
"author": {
"name": "Steve Milburn",
"email": "[email protected]"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/stevemilburn/subnet-info"
},
"dependencies": {
"all-your-base": "^0.3.0",
"to-binary": "0.0.1"
},
"licenses": [
{
"type": "MIT"
}
],
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0"
}
}