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.

package.json 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "leaflet-side-by-side",
  3. "version": "2.0.0",
  4. "description": "Compare two Leaflet layers side by side",
  5. "main": "index.js",
  6. "browserify": {
  7. "transform": [
  8. "css-img-datauri-stream",
  9. "cssify",
  10. "browserify-shim"
  11. ]
  12. },
  13. "browserify-shim": {
  14. "leaflet": "global:L"
  15. },
  16. "scripts": {
  17. "build": "browserify index.js > leaflet-side-by-side.js",
  18. "postbuild": "uglifyjs leaflet-side-by-side.js -cm -o leaflet-side-by-side.min.js",
  19. "preversion": "npm test && npm run build",
  20. "lint": "standard index.js",
  21. "start": "budo index.js:leaflet-side-by-side.js --live",
  22. "test": "npm run lint"
  23. },
  24. "keywords": [
  25. "leaflet"
  26. ],
  27. "author": "Gregor MacLennan / Digital Democracy",
  28. "license": "MIT",
  29. "devDependencies": {
  30. "browserify": "^16.2.2",
  31. "budo": "^11.2.0",
  32. "standard": "^11.0.1",
  33. "uglify-js": "^3.3.24"
  34. },
  35. "dependencies": {
  36. "browserify-shim": "^3.8.14",
  37. "css-img-datauri-stream": "^0.1.5",
  38. "cssify": "^1.0.3",
  39. "leaflet": ">=0.7.7 <2.0.0"
  40. },
  41. "repository": {
  42. "type": "git",
  43. "url": "git+https://github.com/digidem/leaflet-side-by-side.git"
  44. },
  45. "bugs": {
  46. "url": "https://github.com/digidem/leaflet-side-by-side/issues"
  47. },
  48. "homepage": "https://github.com/digidem/leaflet-side-by-side#readme"
  49. }