-
-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
58 lines (58 loc) · 1.42 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
{
"name": "local-reverse-geocoder",
"version": "0.16.7",
"description": "Implements a local reverse geocoder based on GeoNames.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "jshint --exclude ./node_modules,./docs/scripts .",
"start": "node --max-old-space-size=4095 app.js",
"build": "jsdoc -d docs index.js",
"prettier": "prettier --write *.{js,md,json}",
"postinstall": "node --max-old-space-size=4095 postinstall.js"
},
"keywords": [
"geocoding",
"geocoder",
"reverse",
"local"
],
"files": [
"app.js",
"postinstall.js",
"index.js",
"index.d.ts"
],
"author": "Thomas Steiner",
"license": "Apache-2.0",
"dependencies": {
"async": "^3.2.5",
"csv-parse": "^5.5.3",
"debug": "^4.3.4",
"kdt": "^0.1.0",
"node-fetch": "^3.3.2",
"unzip-stream": "^0.3.1"
},
"repository": {
"type": "git",
"url": "https://github.com/tomayac/local-reverse-geocoder.git"
},
"bugs": {
"url": "https://github.com/tomayac/local-reverse-geocoder/issues"
},
"homepage": "https://github.com/tomayac/local-reverse-geocoder",
"engines": {
"node": ">=11.0.0",
"npm": ">=6.4.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.10.7",
"cors": "^2.8.5",
"express": "^4.18.2",
"jsdoc": "^4.0.2",
"jshint": "^2.13.6",
"prettier": "^3.1.1"
}
}