This repository has been archived by the owner on Jan 3, 2019. It is now read-only.
forked from peerigon/parse-domain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.56 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
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "parse-domain",
"version": "2.1.6",
"description": "Splits an url into sub-domain, domain and effective top-level-domain",
"main": "./lib/parseDomain.js",
"scripts": {
"build": "run-s build:lib build:tries",
"build:lib": "run-s build:lib:clean build:lib:babel",
"build:lib:clean": "rimraf lib",
"build:lib:babel": "babel src --out-dir lib",
"build:tries": "node scripts/build-tries.js",
"postinstall": "npm run build:tries",
"prepublish": "npm run build",
"release": "standard-version",
"pretest": "run-s build:lib:clean pretest:link",
"pretest:link": "node scripts/link-src.js",
"test": "nyc mocha -R spec",
"posttest": "eslint src 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 <developers@peerigon.com>",
"license": "Unlicense",
"dependencies": {
"chai": "^4.1.2",
"got": "^8.0.1",
"mkdirp": "^0.5.1",
"mocha": "^4.0.1"
},
"devDependencies": {
"@babel/cli": "7.0.0",
"@babel/core": "7.0.0",
"@babel/preset-env": "7.0.0",
"eslint": "^4.12.1",
"eslint-config-peerigon": "^12.0.1",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsdoc": "^3.2.0",
"npm-run-all": "^4.1.3",
"nyc": "^11.3.0",
"rimraf": "^2.6.2",
"standard-version": "^4.2.0"
},
"files": [
"lib",
"scripts",
"lists",
"test",
"build"
]
}