-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
49 lines (49 loc) · 1.15 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
48
49
{
"name": "tld-extract",
"version": "2.1.2",
"description": "Extract the TLD/domain/subdomain parts of an URL/hostname against mozilla TLDs 'official' listing .",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"update": "node update.js",
"test": "npm run eslint && npm run cover && npm run test:typescript",
"test:typescript": "tsd",
"preversion": "npm run test",
"eslint": "eslint .",
"checkall": "npm run eslint",
"mocha": "node node_modules/mocha/bin/_mocha",
"cover": "nyc mocha"
},
"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": {
"eslint-plugin-ivs": "^1.3.0",
"expect.js": "^0.3.1",
"mocha": "^3.1.2",
"nyc": "^15.1.0",
"tsd": "^0.17.0"
},
"directories": {
"test": "test"
},
"keywords": [
"tld",
"tlds",
"hostname",
"subdomain",
"domain",
"gtld",
"cctld",
"uri",
"url",
"parser"
]
}