-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 920 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
41
{
"name": "gps-miner",
"version": "1.0.0",
"description": "A script to scrape GPS data of cities and translate into different languages using wikidata",
"main": "index.js",
"type": "module",
"engines": {
"node": "20.x",
"npm": "10.x"
},
"scripts": {
"test": "vitest",
"test-2": "vitest run",
"tsc": "tsc",
"process-cities": "tsc && node src/process-cities.js && rm src/*.js",
"del-js": "rm src/*.js"
},
"keywords": [
"script",
"GPS",
"geo-location",
"city",
"country",
"region"
],
"author": "Yusuf Sait Canbaz",
"license": "MIT",
"devDependencies": {
"@types/cli-progress": "^3.11.5",
"@types/node": "^20.11.19",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
},
"dependencies": {
"cli-progress": "^3.12.0",
"express": "^4.19.2",
"fast-csv": "^5.0.1",
"wikibase-sdk": "^9.2.4"
}
}