-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
38 lines (38 loc) · 824 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": "ip-range-check",
"version": "0.2.0",
"description": "Check whether an IP(v4 or v6) is in an CIDR range",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha"
},
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/danielcompton/ip-range-check.git"
},
"keywords": [
"ip",
"ipv6",
"IP",
"Address",
"CIDR",
"range"
],
"author": "Daniel Compton (http://danielcompton.net)",
"license": "MIT",
"bugs": {
"url": "https://github.com/danielcompton/ip-range-check/issues"
},
"homepage": "https://github.com/danielcompton/ip-range-check#readme",
"dependencies": {
"ipaddr.js": "^1.0.1"
},
"devDependencies": {
"mocha": "^2.2.5"
}
}