forked from sujith3g/meteor-cordova-google-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.js
41 lines (32 loc) · 1006 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
34
35
36
37
38
39
40
41
Package.describe({
name: "hedcet:cordova-google-plus-native-sign-in",
summary: "native SignIn with Google Plus in Meteor Cordova Android/IOS App",
documentation: "README.md",
version: "1.1.1",
git: "https://github.com/sujith3g/meteor-cordova-google-plus.git"
});
Cordova.depends({
"cordova-plugin-googleplus": "https://github.com/EddyVerbruggen/cordova-plugin-googleplus.git#3ae99ea5d24619949613b87cdcb01b407199c253"
});
Package.onUse(function(api) {
api.versionsFrom("[email protected]");
api.use([
"accounts-base",
"check"
], ["client", "server"]);
api.use([
"http",
"underscore"
], ["server"]);
api.imply(["accounts-base"], ["client", "server"]);
api.add_files([
"server/cordova_g_plus.js"
], ["server"]);
api.add_files([
"cordova/cordova_g_plus.js"
], ["web.cordova"]);
});
Package.onTest(function(api) {
api.use(["hedcet:cordova-google-plus-native-sign-in", "tinytest"]);
api.addFiles("tests/client/cordova_g_plus_test.js", "client");
});