-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 814 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 814 Bytes
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
{
"name": "tlds",
"version": "1.261.0",
"description": "A list of TLDs.",
"repository": "https://github.com/stephenmathieson/node-tlds.git",
"author": "Stephen Mathieson",
"license": "MIT",
"main": "index.json",
"files": [
"index.json",
"index.d.ts",
"bin.js"
],
"bin": "bin.js",
"scripts": {
"lint": "eslint .",
"format": "prettier --write .",
"test": "node test.js"
},
"keywords": [
"data",
"tld",
"tlds",
"top",
"level",
"domains"
],
"devDependencies": {
"eslint": "^7.6.0",
"got": "^11.5.1",
"is-punycode": "^1.0.1",
"prettier": "^2.8.8",
"punycode": "^2.1.1",
"semver": "^7.3.2"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"node": true,
"es2020": true
}
}
}