forked from peerigon/parse-domain
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 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
40
41
42
43
44
45
46
47
48
49
50
{
"name": "2domain",
"version": "2.2.11",
"description": "Splits an url into sub-domain, domain and effective top-level-domain",
"main": "./lib/parseDomain.js",
"scripts": {
"test": "nyc mocha -R spec",
"posttest": "eslint lib test",
"postinstall": "node scripts/build-tries.js notest",
"prepare": "node scripts/write-pre.js",
"release": "standard-version"
},
"keywords": [
"domain",
"url",
"sub-domain",
"tld",
"parse",
"extract",
"sanitize",
"country",
"top-level"
],
"repository": {
"type": "git",
"url": "https://github.com/7c/2domain.git"
},
"dependencies": {
"chai": "^4.1.2",
"fs-copy-file-sync": "^1.1.1",
"got": "^8.0.1",
"mkdirp": "^0.5.1",
"mocha": "^4.0.1"
},
"devDependencies": {
"eslint": "^4.12.1",
"eslint-config-peerigon": "^12.0.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsdoc": "^3.2.0",
"nyc": "^11.3.0",
"standard-version": "^4.2.0"
},
"files": [
"lib",
"scripts",
"lists",
"test",
"build/tries/pre"
]
}