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.

40 lines
1.6 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
  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/index.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. "font-awesome": "^4.7.0",
  12. "i18next-client": "^1.11.4",
  13. "ip-location": "^1.0.1",
  14. "leaflet": "^1.0.3",
  15. "leaflet-geosearch": "^2.4.0",
  16. "leaflet.locatecontrol": "^0.61.0",
  17. "moment": "^2.18.1",
  18. "opening_hours": "^3.5.0",
  19. "openstreetbrowser-categories-main": "https://github.com/plepe/openstreetbrowser-categories-main",
  20. "openstreetmap-tag-translations": "https://github.com/plepe/openstreetmap-tag-translations",
  21. "overpass-layer": "https://github.com/plepe/overpass-layer",
  22. "query-string": "^5.0.0",
  23. "sheet-router": "^4.2.3"
  24. },
  25. "scripts": {
  26. "test": "echo \"Error: no test specified\" && exit 1",
  27. "build": "browserify src/index.js -o dist/openstreetbrowser.js",
  28. "watch": "watchify --debug src/index.js -o dist/openstreetbrowser.js -v",
  29. "prepublish": "npm run build && npm run lint",
  30. "lint": "standard src/*.js"
  31. },
  32. "devDependencies": {
  33. "browserify": "^14.4.0",
  34. "standard": "^10.0.2",
  35. "watchify": "^3.9.0"
  36. },
  37. "standard": {
  38. "global": [ "lang", "ui_lang", "config", "options", "alert", "L", "register_hook", "call_hooks", "call_hooks_callback", "XMLHttpRequest", "map", "overpassFrontend", "location", "baseCategory", "currentPath", "overpassUrl" ]
  39. }
  40. }