forked from 131/node-tld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.24 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
40
41
42
43
44
45
46
47
{
"name": "tld-extract",
"version": "1.1.2",
"description": "Extract the TLD/domain/subdomain parts of an URL/hostname against mozilla TLDs 'official' listing .",
"main": "index.js",
"scripts": {
"update": "node update.js",
"test": "npm run eslint && npm run cover",
"eslint": "eslint .",
"checkall": "npm run eslint",
"mocha": "node node_modules/mocha/bin/_mocha",
"cover": "nyc --temp-directory coverage/.nyc_output --reporter text-summary --reporter html --reporter lcov mocha",
"coveralls": "npm install coveralls && node ./node_modules/coveralls/bin/coveralls.js < ./coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "https://github.com/131/node-tld.git"
},
"author": "Francois Leurent <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/131/node-tld/issues"
},
"homepage": "https://github.com/131/node-tld",
"devDependencies": {
"expect.js": "^0.3.1",
"nyc": "^13.0.1",
"eslint-plugin-ivs": "^1.3.0",
"mocha": "^3.1.2"
},
"directories": {
"test": "test"
},
"dependencies": {},
"keywords": [
"tld",
"tlds",
"hostname",
"subdomain",
"domain",
"gtld",
"cctld",
"uri",
"url",
"parser"
]
}