-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 925 Bytes
/
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
{
"name": "tld-data-extended",
"version": "2.0.0",
"description": "Accurate data on TLDs with a focus on which ones can actually be registered",
"author": {
"name": "cobertos",
"email": "[email protected]",
"url": "http://cobertos.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Cobertos/tld-data"
},
"scripts": {
"test": "ava test/test.js",
"fetch": "node -r esm --unhandled-rejections=strict src/cli.js --color > tldData.json"
},
"dependencies": {
"argparse": "^2.0.1",
"async": "^3.2.0",
"chalk": "^4.1.0",
"dayjs": "^1.10.4",
"esm": "^3.2.25",
"fetch-retry": "^4.0.1",
"jsdom": "^16.4.0",
"node-fetch": "^2.6.1",
"punycode": "^2.1.1"
},
"license": "MIT",
"devDependencies": {
"ava": "^3.15.0",
"fetch-mock": "^9.11.0",
"proxyquire": "^2.1.3"
},
"ava": {
"require": [
"esm"
]
}
}