forked from peerigon/parse-domain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 878 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
{
"name": "parse-domain",
"version": "0.2.1",
"description": "Splits an url into sub-domain, domain and effective top-level-domain",
"main": "./lib/parseDomain.js",
"scripts": {
"test": "mocha -R spec",
"download-tld": "curl https://publicsuffix.org/list/effective_tld_names.dat > lib/build/tld.txt",
"build-regex": "node lib/build/buildRegex.js",
"update-regex": "npm run download-tld && npm run build-regex && npm run test"
},
"keywords": [
"domain",
"url",
"sub-domain",
"tld",
"parse",
"extract",
"sanitize",
"country",
"top-level"
],
"repository": {
"type": "git",
"url": "https://github.com/peerigon/parse-domain.git"
},
"author": "peerigon <[email protected]>",
"license": "Unlicense",
"dependencies": {},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5"
}
}