50 lines
1.3 KiB
JSON
50 lines
1.3 KiB
JSON
{
|
|
"name": "leaflet-side-by-side",
|
|
"version": "2.0.0",
|
|
"description": "Compare two Leaflet layers side by side",
|
|
"main": "index.js",
|
|
"browserify": {
|
|
"transform": [
|
|
"css-img-datauri-stream",
|
|
"cssify",
|
|
"browserify-shim"
|
|
]
|
|
},
|
|
"browserify-shim": {
|
|
"leaflet": "global:L"
|
|
},
|
|
"scripts": {
|
|
"build": "browserify index.js > leaflet-side-by-side.js",
|
|
"postbuild": "uglifyjs leaflet-side-by-side.js -cm -o leaflet-side-by-side.min.js",
|
|
"preversion": "npm test && npm run build",
|
|
"lint": "standard index.js",
|
|
"start": "budo index.js:leaflet-side-by-side.js --live",
|
|
"test": "npm run lint"
|
|
},
|
|
"keywords": [
|
|
"leaflet"
|
|
],
|
|
"author": "Gregor MacLennan / Digital Democracy",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"browserify": "^12.0.1",
|
|
"budo": "^7.0.0",
|
|
"standard": "^5.4.1",
|
|
"uglify-js": "^2.6.1"
|
|
},
|
|
"dependencies": {
|
|
"browserify-shim": "^3.8.11",
|
|
"css-img-datauri-stream": "^0.1.5",
|
|
"cssify": "^0.8.0",
|
|
"leaflet": ">=0.7.7 <2.0.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/digidem/leaflet-side-by-side.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/digidem/leaflet-side-by-side/issues"
|
|
},
|
|
"homepage": "https://github.com/digidem/leaflet-side-by-side#readme"
|
|
}
|