forked from gosquared/ipcheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 815 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
{
"name": "ipcheck",
"version": "0.1.0",
"description": "Super-efficient module to parse and check if an IP address is in a CIDR block. IPv4 and IPv6 supported.",
"main": "ipcheck.js",
"scripts": {
"test": "mocha test/test.js",
"benchmark": "node benchmark/benchmark.js"
},
"repository": {
"type": "git",
"url": "https://github.com/gosquared/ipcheck.git"
},
"keywords": [
"ip",
"ipv6",
"ipv4",
"cidr"
],
"author": "Simon Tabor",
"license": "MIT",
"bugs": {
"url": "https://github.com/gosquared/ipcheck/issues"
},
"homepage": "https://github.com/gosquared/ipcheck",
"devDependencies": {
"benchmark": "^1.0.0",
"ip-address": "^4.0.0",
"ipaddr.js": "^1.0.1",
"microtime": "^1.4.2",
"mocha": "^2.2.5",
"should": "^7.0.1"
}
}