-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
47 lines (47 loc) · 1.18 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
46
47
{
"name": "leaflet-bing-layer",
"version": "3.3.0",
"description": "Bing Maps Layer for Leaflet v1.0.0",
"main": "index.js",
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"leaflet": "global:L"
},
"scripts": {
"build": "browserify index.js > leaflet-bing-layer.js",
"postbuild": "uglifyjs leaflet-bing-layer.js -cm -o leaflet-bing-layer.min.js",
"preversion": "npm test && npm run build",
"lint": "standard index.js",
"start": "budo index.js:leaflet-bing-layer.js --live",
"test": "npm run lint"
},
"keywords": [
"leaflet",
"bing"
],
"author": "Gregor MacLennan",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gmaclennan/leaflet-bing-layer.git"
},
"bugs": {
"url": "https://github.com/gmaclennan/leaflet-bing-layer/issues"
},
"homepage": "https://github.com/gmaclennan/leaflet-bing-layer",
"dependencies": {
"bbox-intersect": "^0.1.1",
"browserify-shim": "^3.8.11",
"fetch-jsonp": "^1.0.0",
"leaflet": "^1.0.0-beta.2"
},
"devDependencies": {
"browserify": "^12.0.1",
"budo": "^7.0.2",
"standard": "^5.4.1"
}
}