-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.5 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
{
"name": "@geoapify/leaflet-address-search-plugin",
"version": "1.0.2",
"description": "Address autocomplete plugin for Leaflet using Geoapify Geocoding API. Find an address and show its location!",
"homepage": "https://www.geoapify.com/geocoding-api/",
"main": "dist/L.Control.GeoapifyAddressSearch.min.js",
"files": [
"src",
"dist",
"examples"
],
"license": "MIT",
"author": {
"name": "Geoapify GmbH",
"email": "[email protected]",
"url": "https://www.geoapify.com/"
},
"peerDependencies": {
"leaflet": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/geoapify/leaflet-address-search-plugin.git"
},
"keywords": [
"leaflet",
"geocode",
"geocoding",
"address",
"autocomplete",
"search",
"geoapify"
],
"scripts": {
"build": "npm run build-js && npm run build-css",
"build-js": "uglifyjs src/L.Control.GeoapifyAddressSearch.js -o dist/L.Control.GeoapifyAddressSearch.min.js",
"build-css": "cleancss -o dist/L.Control.GeoapifyAddressSearch.min.css src/L.Control.GeoapifyAddressSearch.css",
"prepare": "npm run build"
},
"devDependencies": {
"clean-css-cli": "^5.5.0",
"eslint": "^8.6.0",
"uglify-js": "^3.14.5"
},
"bugs": {
"url": "https://github.com/geoapify/leaflet-address-search-plugin/issues",
"email": "[email protected]"
}
}