-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
50 lines (50 loc) · 1.28 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": "publicsuffixlist",
"version": "0.3.0",
"description": "A JavaScript domain name parser for the validation of domain names and top level domains, driven by TLDs data from Mozilla's publicsuffixlist.org.",
"main": "index.js",
"scripts": {
"postinstall": "node download_list.js",
"update": "node download_list.js",
"preuninstall": "node delete_list.js",
"test": "mocha",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"author": {
"name": "Matthias Thoemmes <git@gmx.org>",
"email": "git@gmx.org"
},
"repository": {
"type": "git",
"url": "git://github.com/cmtt/publicsuffixlist.git"
},
"keywords": [
"domain name parser",
"domain name",
"domain",
"eTLD",
"host",
"public suffix list",
"public suffix",
"publicsuffix.org",
"TLD",
"top-level domain"
],
"licence": "MIT",
"homepage": "https://github.com/cmtt/publicsuffixlist",
"dependencies": {
"next-tick": "^1.0.0",
"parse-function": "^2.3.2",
"require-dir": "^1.2.0"
},
"devDependencies": {
"coveralls": "^3.0.9",
"gulp": "^4.0.2",
"gulp-di": "^0.1.0",
"gulp-istanbul": "^1.1.3",
"gulp-jshint": "^2.1.0",
"gulp-mocha": "^7.0.2",
"jshint": "^2.10.3",
"mocha": "^6.2.2"
}
}