-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.js
60 lines (47 loc) · 988 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
Package.describe({
documentation: "README.md",
git: "https://github.com/sujith3g/meteor-cordova-google-plus.git",
name: "hedcet:cordova-google-plus-native-sign-in",
summary: "native SignIn with Google Plus in Meteor Cordova Android/IOS App",
version: "1.1.4"
});
Npm.depends({
"cordova-plugin-googleplus": "5.1.1"
});
Package.onUse(function(api) {
api.versionsFrom("[email protected]");
api.use([
"accounts-base",
"check"
], [
"client",
"server"
]);
api.use([
"accounts-password",
"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");
});