-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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
{
"name": "ip-to-country-csv-converter",
"version": "1.0.2",
"description": "Convert free IP location databases to eMule format ip-to-country.csv",
"repository": {
"type": "git",
"url": "https://github.com/emulefanscom/ip-to-country-csv-converter.git"
},
"scripts": {
"clear": "rimraf dist",
"docountry": "yarn clear && tsc && node dist/docountry.js",
"docity": "yarn clear && tsc && node dist/docity.js",
"docncity": "yarn clear && tsc && node dist/docncity.js",
"zip": "yarn clear && tsc && node dist/zip.js",
"rmzip": "rimraf output*/**/*.zip",
"sort": "yarn clear && tsc && node dist/sort.js",
"qqwry": "yarn clear && tsc && node dist/utils/qqwry_extract_countries.js"
},
"homepage": "https://www.emulefans.com/news/plugin/ip-to-country/",
"keywords": [
"emule",
"ip-to-country.csv",
"ip",
"location",
"country",
"city",
"database"
],
"author": "Tom Chen <[email protected]>",
"license": "MIT",
"dependencies": {
"archiver": "^5.3.0",
"csv-parse": "^5.0.3",
"csv-stringify": "^6.0.4",
"iconv-lite": "^0.6.3",
"rimraf": "^3.0.2",
"typescript": "^4.5.2"
},
"devDependencies": {
"@types/archiver": "^5.1.1",
"@types/node": "^16.11.9"
}
}