-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
39 lines (39 loc) · 1.07 KB
/
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
{
"name": "whois-parsed-v2",
"version": "1.0.1",
"description": "A wrapper for the fantastic whois module that parses whois data into consistent fields across multiple tlds",
"main": "index.js",
"scripts": {
"test": "mocha --reporter spec",
"cover": "node_modules/istanbul/lib/cli.js cover node_modules/mocha/bin/_mocha -- -R spec test/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/benfiratkaya/whois-parsed-v2.git"
},
"keywords": [
"whois"
],
"author": "Firat Kaya <[email protected]> (https://www.benfiratkaya.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/benfiratkaya/whois-parsed-v2/issues"
},
"homepage": "https://github.com/benfiratkaya/whois-parsed-v2#readme",
"engines": {
"node": ">=4.2.4"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-datetime": "^1.5.0",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"punycode": "^2.1.1"
},
"dependencies": {
"html-entities": "^1.2.1",
"moment": "^2.22.2",
"whois-raw": "^0.1.7"
}
}