-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
50 lines (50 loc) · 990 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
49
50
{
"name": "dnsbl-lookup",
"version": "0.3.3",
"description": "Node.js multi DNSBL/URIBL Lookup",
"main": "index.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha -R spec -t 60000"
},
"repository": {
"type": "git",
"url": "https://github.com/hassansin/node-dnsbl-lookup.git"
},
"keywords": [
"node",
"rbl",
"dns blocklist",
"dnsbl",
"uribl",
"blacklist",
"multirbl",
"blocklist",
"rhsbl",
"lookup",
"query",
"cli",
"command-line"
],
"engines": {
"node": ""
},
"bin": {
"dnsbl-lookup": "bin/dnsbl-lookup"
},
"preferGlobal": true,
"author": {
"name": "hassansin",
"url": "https://github.com/hassansin"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/hassansin/node-dnsbl-lookup/issues"
},
"homepage": "https://github.com/hassansin/node-dnsbl-lookup",
"dependencies": {
"async": "^0.9.0"
},
"devDependencies": {
"mocha": "^2.3.2"
}
}