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.

66 lines
2.0 KiB

7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
  1. {
  2. "name": "openstreetbrowser",
  3. "version": "0.0.0",
  4. "description": "A re-make of the famous OpenStreetBrowser (pure JS, using Overpass API)",
  5. "main": "src/export.js",
  6. "repository": "https://github.com/plepe/openstreetbrowser",
  7. "author": "Stephan Bösch-Plepelits <skunk@xover.mud.at>",
  8. "license": "GPL-3.0",
  9. "dependencies": {
  10. "async": "^2.5.0",
  11. "color-interpolate": "^1.0.2",
  12. "font-awesome": "^4.7.0",
  13. "i18next-client": "^1.11.4",
  14. "ip-location": "^1.0.1",
  15. "json-multiline-strings": "^0.1.0",
  16. "leaflet": "^1.0.3",
  17. "leaflet-geosearch": "^2.4.0",
  18. "leaflet-polylineoffset": "^1.1.0",
  19. "leaflet-textpath": "https://github.com/makinacorpus/Leaflet.TextPath#leaflet0.8-dev",
  20. "leaflet.locatecontrol": "^0.61.0",
  21. "modulekit-tabs": "^0.1.0",
  22. "moment": "^2.18.1",
  23. "opening_hours": "^3.5.0",
  24. "openstreetbrowser-categories-main": "https://github.com/plepe/openstreetbrowser-categories-main",
  25. "openstreetmap-date-parser": "^0.1.0",
  26. "openstreetmap-tag-translations": "https://github.com/plepe/openstreetmap-tag-translations",
  27. "overpass-layer": "https://github.com/plepe/overpass-layer",
  28. "query-string": "^5.0.0",
  29. "sheet-router": "^4.2.3",
  30. "weight-sort": "^1.3.0"
  31. },
  32. "scripts": {
  33. "test": "echo \"Error: no test specified\" && exit 1",
  34. "build": "browserify -g browserify-css src/index.js -o dist/openstreetbrowser.js",
  35. "watch": "watchify --debug -g browserify-css src/index.js -o dist/openstreetbrowser.js -v",
  36. "prepublish": "npm run build",
  37. "lint": "standard src/*.js"
  38. },
  39. "devDependencies": {
  40. "browserify": "^14.4.0",
  41. "browserify-css": "^0.14.0",
  42. "standard": "^10.0.2",
  43. "watchify": "^3.9.0"
  44. },
  45. "standard": {
  46. "global": [
  47. "lang",
  48. "ui_lang",
  49. "config",
  50. "options",
  51. "alert",
  52. "L",
  53. "register_hook",
  54. "call_hooks",
  55. "call_hooks_callback",
  56. "XMLHttpRequest",
  57. "map",
  58. "overpassFrontend",
  59. "location",
  60. "baseCategory",
  61. "currentPath",
  62. "overpassUrl",
  63. "ajax"
  64. ]
  65. }
  66. }