-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.15 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
{
"name": "geoapi",
"version": "0.0.1",
"description": "A Node.js/Express API server resolving lat:lng to inhabited places, administrative divisions and postal codes",
"type": "module",
"module": "index.js",
"scripts": {
"download": "node download",
"bundle": "rollup -c",
"start": "node --max-old-space-size=8192 geoapi.js",
"startdev": "node --max-old-space-size=8192 src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mmomtchev/geoapi.git"
},
"keywords": [
"geoapi",
"geonames",
"postcodes"
],
"author": "Momtchil Momtchev <momtchil@momtchev.com>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/mmomtchev/geoapi/issues"
},
"homepage": "https://github.com/mmomtchev/geoapi#readme",
"dependencies": {
"collections": "^5.1.13",
"express": "^4.21.1",
"flatbush": "^4.4.0",
"geoflatbush": "^1.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"rollup-plugin-executable": "^1.6.3",
"rollup-plugin-terser": "^7.0.2"
}
}