forked from Leaflet/Leaflet.heat
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.39 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.39 KB
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
55
56
57
58
{
"name": "leaflet.bubble",
"version": "0.1.0",
"description": "A simple and fast library for Leaflet bubble maps.",
"homepage": "https://github.com/stevepepple/Leaflet.bubble",
"keywords": [
"bubble",
"chart",
"canvas",
"visualization",
"gis",
"leaflet",
"plugin"
],
"author": "Steve Pepple",
"repository": {
"type": "git",
"url": "git://github.com/stevepepple/Leaflet.bubble.git"
},
"main": "dist/leaflet-bubble.js",
"devDependencies": {
"chroma-js": "^1.1.1",
"d3-scale": "^0.6.4",
"eslint": "^1.7.3",
"eslint-config-mourner": "^1.0.1",
"uglify-js": "^2.5.0"
},
"eslintConfig": {
"extends": "mourner",
"globals": {
"L": false
}
},
"scripts": {
"test": "eslint src",
"prepublish": "uglifyjs node_modules/d3-interpolate/build/d3-interpolate.min.js node_modules/d3-scale/build/d3-scale.min.js node_modules/chroma-js/chroma.js node_modules/numeral/min/numeral.min.js src/BubbleLayer.js -c -m -o dist/leaflet-bubble.js"
},
"license": "BSD-2-Clause",
"jshintConfig": {
"quotmark": "single",
"globals": {
"L": true
},
"trailing": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"noempty": true,
"nonbsp": true,
"undef": true,
"unused": true,
"browser": true
},
"dependencies": {
"d3-interpolate": "^0.7.0",
"numeral": "^1.5.3"
}
}