-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.js
37 lines (35 loc) · 1.19 KB
/
package.js
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
Package.describe({
name: "bevanhunt:leaflet",
summary: "leaflet - mobile-friendly maps.",
git: "https://github.com/bevanhunt/meteor-leaflet.git",
author: "Bevan Hunt <bevan@bevanhunt.com> (http://bevanhunt.com)",
version: "3.2.0",
license: "MIT"
});
Npm.depends({
"leaflet": "1.3.4",
"leaflet.markercluster": "1.4.1",
"leaflet-providers": "1.5.0",
"leaflet-spin": "1.1.0",
"spin.js": "2.3.2"
});
Package.onUse(function (api) {
api.versionsFrom('1.2');
api.addFiles([
'.npm/package/node_modules/leaflet/dist/leaflet-src.js',
'.npm/package/node_modules/leaflet-providers/leaflet-providers.js',
'.npm/package/node_modules/leaflet.markercluster/dist/leaflet.markercluster-src.js',
'.npm/package/node_modules/leaflet.markercluster/dist/MarkerCluster.css',
'.npm/package/node_modules/leaflet.markercluster/dist/MarkerCluster.Default.css',
'.npm/package/node_modules/spin.js/spin.js',
'.npm/package/node_modules/leaflet-spin/leaflet.spin.js',
'styles/leaflet.css',
], 'client');
api.addAssets([
'images/layers-2x.png',
'images/layers.png',
'images/marker-icon-2x.png',
'images/marker-icon.png',
'images/marker-shadow.png'
],'client');
});