2015-01-10 12:55:48 +01:00
{
"name" : "leaflet-control-geocoder" ,
2020-12-18 10:36:51 +01:00
"version" : "1.13.0" ,
"description" : "Extendable geocoder with builtin support for OpenStreetMap Nominatim, Bing, Google, Mapbox, MapQuest, What3Words, Photon, Pelias, HERE, Neutrino, Plus codes" ,
2016-11-25 09:44:27 +01:00
"main" : "dist/Control.Geocoder.js" ,
2020-12-18 10:36:51 +01:00
"module" : "src/index.js" ,
2015-01-10 12:55:48 +01:00
"scripts" : {
2018-08-23 15:42:45 +02:00
"prepare" : "npm run build" ,
2020-12-18 10:36:51 +01:00
"build" : "npm run build:js && npm run build:css && npm run build:img && npm run build:demo-rollup && npm run build:demo-webpack" ,
"build:js" : "rollup -c" ,
"build:css" : "cpr Control.Geocoder.css dist/Control.Geocoder.css --overwrite" ,
2018-08-23 15:42:45 +02:00
"build:img" : "cpr images/ dist/images/ --overwrite" ,
2020-12-18 10:36:51 +01:00
"build:demo-rollup" : "cd demo-rollup && npm install && npm run build" ,
"build:demo-webpack" : "cd demo-rollup && npm install && npm run build" ,
"test" : "npm run test:karma -- --single-run && npm run lint" ,
"test:karma" : "karma start spec/karma.conf.js" ,
"lint" : "npm run lint:js && npm run lint:style" ,
"lint:js" : "eslint ." ,
"lint:style" : "prettier --check $(npm run ls-files)" ,
"fix:style" : "prettier --write $(npm run ls-files)" ,
"ls-files" : "git ls-files '*.js' '*.json' '*.css' '*.html' '*.yaml' '*.yml' '*.md'"
2015-01-10 12:55:48 +01:00
} ,
"repository" : {
"type" : "git" ,
"url" : "git://github.com/perliedman/leaflet-control-geocoder.git"
} ,
2020-12-18 10:36:51 +01:00
"files" : [
"LICENCE" ,
"dist/**" ,
"demo/**" ,
"images/**" ,
"src/**" ,
"*.css"
] ,
2015-01-10 12:55:48 +01:00
"keywords" : [
"leaflet" ,
"geocoder" ,
2016-11-25 09:44:27 +01:00
"locations" ,
2020-12-18 10:36:51 +01:00
"openstreetmap" ,
2016-11-25 09:44:27 +01:00
"nominatim" ,
"bing" ,
2020-12-18 10:36:51 +01:00
"bingmaps" ,
"googlemaps" ,
"google-maps" ,
2016-11-25 09:44:27 +01:00
"mapbox" ,
"mapquest" ,
2020-12-18 10:36:51 +01:00
"opencage" ,
"what3words" ,
"photon" ,
2016-11-25 09:44:27 +01:00
"mapzen" ,
2020-12-18 10:36:51 +01:00
"pelias" ,
"here" ,
"neutrino" ,
"pluscodes" ,
"open location code"
2015-01-10 12:55:48 +01:00
] ,
"author" : "Per Liedman <per@liedman.net>" ,
2020-12-18 10:36:51 +01:00
"contributors" : [
"Simon Legner <Simon.Legner@gmail.com>"
] ,
2015-01-10 12:55:48 +01:00
"license" : "BSD-2-Clause" ,
"bugs" : {
"url" : "https://github.com/perliedman/leaflet-control-geocoder/issues"
} ,
2016-11-25 09:44:27 +01:00
"dependencies" : { } ,
"devDependencies" : {
2018-08-23 15:42:45 +02:00
"cpr" : "^3.0.1" ,
2020-12-18 10:36:51 +01:00
"eslint" : "^6.8.0" ,
"eslint-plugin-prettier" : "^3.1.2" ,
"karma" : "^4.4.1" ,
"karma-expect" : "^1.1.3" ,
"karma-mocha" : "^1.3.0" ,
"karma-phantomjs-launcher" : "^1.0.4" ,
"karma-sinon" : "^1.0.5" ,
"leaflet" : "^1.6.0" ,
"mocha" : "^6.2.2" ,
"phantomjs-prebuilt" : "^2.1.16" ,
"prettier" : "^1.19.1" ,
"rollup" : "^0.65.2" ,
"rollup-plugin-uglify" : "^5.0.2" ,
"sinon" : "^7.5.0" ,
"uglify-js" : "^3.7.5"
} ,
"optionalDependencies" : {
"open-location-code" : "^1.0.0"
2015-01-10 12:55:48 +01:00
}
}