-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.js
29 lines (23 loc) · 954 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
29
Package.describe({
name: 'mirrorcell:geolocation-plus',
version: '1.1.8',
// Brief, one-line summary of the package.
summary: 'A Geolocation Abstraction with Manual Starting / Stopping and location storage',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/pmwisdom/mirrorcell-geolocation-plus',
// By default, Meteor will default to using README.md for documentation.
// To avoid submitting documentation, set this field to null.
documentation: 'README.md'
});
Cordova.depends({
"org.apache.cordova.geolocation": "0.3.11",
"org.flybuy.nativeutils": "https://github.com/pmwisdom/NativeUtils/tarball/64460ce4e28a346245beb2c5a7413bd67a6c148d"
});
Package.onUse(function(api) {
api.versionsFrom('1.0.3.1');
api.use(['session', 'reactive-var']);
api.addFiles('lib/location.js');
api.export('Location');
});
Package.onTest(function(api) {
});