forked from Leaflet/Leaflet.heat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.01 KB
/
package.json
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
{
"name": "leaflet.heat",
"version": "0.1.1",
"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": {
"simpleheat": "~0.2.0",
"uglify-js": "~2.4.12"
},
"scripts": {
"test": "jshint src",
"prepublish": "uglifyjs node_modules/simpleheat/simpleheat.js src/HeatLayer.js -c -m --comments /Vladimir/ -o dist/leaflet-heat.js"
},
"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,
"trailing": true
}
}