-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.js
33 lines (25 loc) · 874 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
30
31
32
33
Package.describe({
name: 'richsilv:cordova-notifications',
summary: 'Simple push notifications for Cordova apps built using Meteor.',
git: 'https://github.com/richsilv/meteor-cordova-notifications',
version: "0.2.0"
});
Cordova.depends({
"de.appplant.cordova.plugin.local-notification" : "0.8.1",
"com.phonegap.plugins.pushplugin" : "2.2.1",
"org.apache.cordova.dialogs": "0.2.10"
});
Package.on_use(function(api) {
api.use('[email protected]', 'web.cordova');
api.use('[email protected]', 'server');
api.use('[email protected]', 'client');
api.use('mizzao:[email protected]', 'server');
api.add_files('cordova-both.js');
api.export('NotificationClient');
api.export('Cordova');
});
Package.on_test(function(api) {
api.use('richsilv:cordova-notifications');
api.use('tinytest');
api.add_files('richsilv:cordova-notifications_tests.js');
});