forked from stephenmathieson/node-tlds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.03 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
{
"name": "tlds",
"version": "1.209.0",
"description": "A list of TLDs.",
"repository": "https://github.com/stephenmathieson/node-tlds.git",
"author": "Stephen Mathieson <[email protected]>",
"license": "MIT",
"main": "index.json",
"files": [
"index.json",
"index.d.ts",
"bin.js"
],
"bin": "bin.js",
"scripts": {
"lint": "eslint .",
"test": "ava",
"prepublishOnly": "eslint . && ava"
},
"keywords": [
"data",
"tld",
"tlds",
"top",
"level",
"domains"
],
"devDependencies": {
"ava": "^3.11.0",
"eslint": "^7.6.0",
"execa": "^4.0.3",
"got": "^11.5.1",
"is-git-dirty": "^2.0.1",
"is-punycode": "^1.0.1",
"load-json-file": "^6.2.0",
"prepend-file": "^2.0.0",
"punycode": "^2.1.1",
"semver": "^7.3.2",
"write-json-file": "^4.3.0"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"node": true,
"es2020": true
},
"rules": {
"indent": [
"error",
2
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
}
}