forked from transitive-bullshit/ip-set
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 925 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
44
45
46
47
48
{
"name": "ip-set",
"description": "Efficient mutable set for IP addresses",
"version": "1.0.1",
"author": "Travis Fischer <[email protected]>",
"dependencies": {
"ip": "^1.1.3"
},
"devDependencies": {
"mocha": "^5.2.0",
"tape": "^4.6.0"
},
"homepage": "http://webtorrent.io",
"keywords": [
"IP",
"address",
"ipv4",
"ipv6",
"set",
"blacklist",
"blocklist"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/fisch0920/ip-set.git"
},
"bugs": {
"url": "https://github.com/fisch0920/ip-set/issues"
},
"scripts": {
"test": "tape test/*.js"
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/9..latest",
"chrome/25..latest",
"firefox/20..latest",
"safari/6..latest",
"opera/15.0..latest"
]
},
"directories": {
"test": "test"
}
}