Blame view
src/main/resources/leafletmap/Leaflet.heat/package.json
1.17 KB
79b001037 heat map |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
{ "name": "leaflet.heat", "version": "0.2.0", "description": "A tiny and fast Leaflet heatmap plugin.", "homepage": "https://github.com/Leaflet/Leaflet.heat", "keywords": [ "heatmap", "canvas", "visualization", "gis", "leaflet", "plugin" ], "author": "Vladimir Agafonkin", "repository": { "type": "git", "url": "git://github.com/Leaflet/Leaflet.heat.git" }, "main": "dist/leaflet-heat.js", "devDependencies": { "eslint": "^1.7.3", "eslint-config-mourner": "^1.0.1", "simpleheat": "~0.2.0", "uglify-js": "^2.5.0" }, "eslintConfig": { "extends": "mourner", "globals": { "L": false, "simpleheat": false } }, "scripts": { "test": "eslint src", "prepublish": "uglifyjs node_modules/simpleheat/simpleheat.js src/HeatLayer.js -c -m -o dist/leaflet-heat.js" }, "license": "BSD-2-Clause", "jshintConfig": { "quotmark": "single", "globals": { "L": true, "simpleheat": true }, "trailing": true, "camelcase": true, "curly": true, "eqeqeq": true, "noempty": true, "nonbsp": true, "undef": true, "unused": true, "browser": true } } |