You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

95 lines
3.1 KiB

{
"name": "openstreetbrowser",
"version": "5.3.0",
"description": "A re-make of the famous OpenStreetBrowser (pure JS, using Overpass API)",
"main": "src/export.js",
"repository": "https://github.com/plepe/openstreetbrowser",
"author": "Stephan Bösch-Plepelits <skunk@xover.mud.at>",
"license": "GPL-3.0",
"dependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.4",
"@fortawesome/fontawesome-free": "^5.15.3",
"@ideditor/temaki": "^4.4.0",
"@mapbox/maki": "^6.2.0",
"@turf/area": "^6.3.0",
"@turf/length": "^6.3.0",
"async": "^3.2.4",
"async-foreach": "^0.1.3",
"babelify": "^10.0.0",
"color-interpolate": "^1.0.5",
"event-emitter": "^0.3.5",
"file-saver": "^2.0.5",
"formatcoords": "^1.1.3",
"i18next-client": "^1.11.4",
"ip-location": "^1.0.1",
"js-yaml": "^4.1.0",
"json-multiline-strings": "^0.1.0",
"leaflet": "~1.7",
"leaflet-geosearch": "^3.7.0",
"leaflet-polylineoffset": "^1.1.1",
"leaflet-textpath": "git+https://github.com/makinacorpus/Leaflet.TextPath.git#leaflet0.8-dev",
"leaflet.locatecontrol": "^0.72.2",
"leaflet.polylinemeasure": "git+https://github.com/ppete2/Leaflet.PolylineMeasure.git",
"md5": "^2.3.0",
"measure-ts": "^3.3.2",
"mini-svg-data-uri": "^1.4.4",
"modulekit-tabs": "^0.2.2",
"moment": "^2.29.3",
"natsort": "^2.0.3",
"opening_hours": "^3.8.0",
"openstreetbrowser-categories-main": "git+https://github.com/plepe/openstreetbrowser-categories-main.git",
"openstreetmap-date-format": "^0.3.1",
"openstreetmap-date-parser": "^0.1.2",
"openstreetmap-tag-translations": "git+https://github.com/plepe/openstreetmap-tag-translations.git",
"overpass-frontend": "^3.0.0",
"overpass-layer": "^3.2.1",
"query-string": "^6.13.8",
"sheet-router": "^4.2.3",
"sprintf-js": "^1.1.2",
"weight-sort": "^1.3.1"
},
"scripts": {
"test": "mocha --bail",
"build": "npm run build-locales && browserify -g browserify-css src/index.js -t [ babelify ] -o dist/openstreetbrowser.js && minify dist/openstreetbrowser.js > dist/openstreetbrowser.min.js",
"build-locales": "for i in `ls locales/` ; do browserify locales/$i -o dist/locale-$i ; done",
"watch": "npm run build-locales && watchify --debug -g browserify-css src/index.js -o dist/openstreetbrowser.js -v",
"prepare": "npm run build",
"lint": "standard src/*.js"
},
"devDependencies": {
"browserify": "^17.0.0",
"browserify-css": "^0.15.0",
"leaflet-polylinedecorator": "git+https://github.com/plepe/Leaflet.PolylineDecorator.git",
"minify": "^7.2.2",
"mocha": "^9.2.2",
"standard": "^16.0.4",
"watchify": "^4.0.0"
},
"standard": {
"global": [
"lang",
"ui_lang",
"config",
"options",
"alert",
"L",
"register_hook",
"call_hooks",
"call_hooks_callback",
"XMLHttpRequest",
"map",
"overpassFrontend",
"location",
"baseCategory",
"currentPath",
"overpassUrl",
"ajax"
],
"rules": {
"camelcase": 0
}
}
}