forked from danielcompton/ip-range-check
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 847 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
{
"name": "@videsk/ip-verify",
"version": "1.0.0",
"description": "Check whether an IP(v4 or v6) is in an CIDR range",
"main": "index.js",
"scripts": {
"test": "mocha test"
},
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/videsk/cidr-validator.git"
},
"keywords": [
"ip",
"ipv6",
"IP",
"Address",
"CIDR",
"range"
],
"author": "Daniel Compton (https://danielcompton.net)",
"license": "MIT",
"bugs": {
"url": "https://github.com/videsk/cidr-validator/issues"
},
"homepage": "https://github.com/videsk/cidr-validator#readme",
"dependencies": {
"ipaddr.js": "^2.0.1"
},
"devDependencies": {
"mocha": "^10.2.0"
},
"release": {
"branches": [
"master"
]
}
}