forked from calvinmetcalf/leaflet-ajax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 821 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
{
"name": "leaflet-ajax",
"version": "2.0.0",
"description": "AJAX and JSONP in Leaflet",
"main": "src/index.js",
"directories": {
"example": "example"
},
"scripts": {
"lint": "semistandard src/*.js",
"build": "browserify -u leaflet src/index.js > dist/leaflet.ajax.js && uglifyjs -mc < dist/leaflet.ajax.js > dist/leaflet.ajax.min.js"
},
"devDependencies": {
"browserify": "^11.0.1",
"express": "^4.13.3",
"uglify-js": "^2.4.24"
},
"repository": {
"type": "git",
"url": "git://github.com/calvinmetcalf/leaflet-ajax.git"
},
"keywords": [
"leaflet",
"ajax",
"geojson"
],
"author": "Calvin Metcalf",
"license": "MIT",
"bugs": {
"url": "https://github.com/calvinmetcalf/leaflet-ajax/issues"
},
"dependencies": {
"lie": "^3.0.1"
}
}