-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
28 lines (24 loc) · 942 Bytes
/
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
Package.describe({
summary: "Cordova enabled background geolocation, even when closed/suspended",
version: "0.0.7",
name: "datascaping:cordova-geolocation-background",
git: "https://github.com/Datascaping/meteor-cordova-geolocation-background"
});
Cordova.depends({
// http://plugins.cordova.io/#/package/com.romainstrock.cordova.background-geolocation
'com.romainstrock.cordova.background-geolocation': '0.3.9',
'org.apache.cordova.geolocation': '0.3.12',
'org.apache.cordova.device': '0.2.11'
});
Package.onUse(function(api) {
api.versionsFrom('[email protected]');
api.use('underscore', 'client');
api.use('http', 'client');
api.export('GeolocationBG', 'client');
api.addFiles('cordova-geolocation-background.js', 'client');
});
Package.onTest(function(api) {
api.use('tinytest');
api.use('zeroasterisk:cordova-geolocation-background');
api.addFiles('cordova-geolocation-background-tests.js', 'client');
});