-
Notifications
You must be signed in to change notification settings - Fork 233
/
package.json
37 lines (37 loc) · 895 Bytes
/
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
{
"name": "leaflet-choropleth",
"version": "1.1.4",
"description": "Choropleth plugin for Leaflet (color scale based on value)",
"main": "src/choropleth.js",
"scripts": {
"build": "webpack -p",
"watch": "webpack --watch",
"test": "standard src | snazzy && mocha test"
},
"keywords": [
"leaflet",
"choropleth",
"chloropleth"
],
"author": "timwis <[email protected]>",
"homepage": "https://github.com/timwis/leaflet-choropleth",
"repository": {
"type": "git",
"url": "https://github.com/timwis/leaflet-choropleth.git"
},
"license": "MIT",
"devDependencies": {
"jsdom": "^7.2.0",
"mocha": "^2.3.4",
"mocha-jsdom": "^1.0.0",
"should": "^8.0.0",
"snazzy": "^2.0.1",
"standard": "^5.4.1",
"webpack": "^2.5.1"
},
"dependencies": {
"chroma-js": "^1.1.1",
"leaflet": "^1.0.2",
"lodash": "^4.17.4"
}
}