-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1001 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
{
"name": "nominatim-client",
"version": "3.2.1",
"description": "A simple client to handle nominatim searches",
"main": "nominatim.node.min.js",
"module": "nominatim.module.min.mjs",
"types": "index.d.ts",
"scripts": {
"test": "jest --coverage",
"lint": "eslint lib __tests__",
"lint:fix": "eslint --fix lib __tests__",
"build": "rollup -c --preferConst"
},
"repository": {
"type": "git",
"url": "[email protected]:demsking/nominatim-client.git"
},
"keywords": [
"nominatim",
"geocode",
"reverse geocode",
"osm",
"place",
"search"
],
"author": "Sébastien Demanou",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/demsking/nominatim-client/-/issues"
},
"homepage": "https://gitlab.com/demsking/nominatim-client#nominatim-client",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"eslint": "^8.2.0",
"jest": "^27.0.6",
"rollup": "^2.60.0",
"rollup-plugin-terser": "^7.0.2"
}
}