-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
75 lines (75 loc) · 1.85 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
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "pelias-geonames",
"version": "0.0.0-development",
"author": "mapzen",
"description": "Import pipleine to bring Geonames data into the Pelias Geocoder",
"homepage": "https://pelias.io",
"license": "MIT",
"scripts": {
"download_metadata": "mkdir -p metadata && node bin/updateMetadata.js",
"download": "./bin/download",
"countryCodes": "node bin/viewCountryCodes.js",
"functional": "./bin/functional",
"import": "./bin/start",
"lint": "jshint .",
"postinstall": "npm run download_metadata",
"start": "./bin/start",
"test": "NODE_ENV=test npm run units",
"ci": "npm test && npm run functional",
"units": "./bin/units",
"validate": "npm ls"
},
"repository": {
"type": "git",
"url": "https://github.com/pelias/geonames.git"
},
"keywords": [
"pelias",
"geonames",
"geocoder",
"maps"
],
"bugs": {
"url": "https://github.com/pelias/geonames/issues"
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"cli-table": "^0.3.0",
"csv-parse": "^5.0.4",
"geonames-stream": "^2.0.3",
"JSONStream": "^1.0.7",
"lodash": "^4.17.15",
"pelias-blacklist-stream": "^1.2.0",
"pelias-config": "^6.0.0",
"pelias-dbclient": "^3.0.0",
"pelias-logger": "^1.4.1",
"pelias-model": "^10.0.0",
"pelias-wof-admin-lookup": "^7.3.0",
"request": "^2.34.0",
"split2": "^4.1.0",
"through2": "^3.0.0",
"through2-filter": "^3.0.0",
"through2-sink": "^1.0.0",
"unzipper": "^0.10.0"
},
"devDependencies": {
"deep-diff": "^1.0.0",
"pelias-mock-logger": "^1.1.0",
"precommit-hook": "^3.0.0",
"proxyquire": "^2.1.3",
"stream-mock": "^2.0.3",
"tap-dot": "^2.0.0",
"tape": "^5.0.0"
},
"pre-commit": [
"lint",
"validate",
"test"
],
"release": {
"branch": "master",
"success": []
}
}