-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.js
35 lines (31 loc) · 1.37 KB
/
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
Package.describe({
summary: "Automatically add visitor as anonymous guest with userId",
version: "0.1.13",
name: "artwells:accounts-guest",
git: "https://github.com/artwells/meteor-accounts-guest.git"
});
Package.onUse(function (api) {
api.versionsFrom("METEOR@0.9.0");
api.use(['accounts-base','deps', 'blaze@2.0.4'], 'client');
api.use(['accounts-base', 'mongo@1.1.0', 'check', 'random'], 'server');
api.use('accounts-password', 'server', { weak: true });
api.use('underscore', 'server');
api.use('brettle:accounts-patch-ui@0.0.1');
api.use('brettle:accounts-login-state@0.0.1');
api.use('brettle:accounts-add-service@0.3.0', ['client', 'server'], { weak: true });
api.use('brettle:accounts-multiple@0.3.0', ['client', 'server'], { weak: true });
api.add_files('accounts-guest.js', ['client','server']);
api.export('AccountsGuest');
api.add_files('accounts-guest-server.js', 'server');
api.add_files('accounts-guest-client.js', 'client');
});
Package.onTest(function (api) {
api.versionsFrom("METEOR@0.9.0");
api.use(['accounts-base', 'accounts-password', 'mongo', 'tinytest','deps','ddp'], ['client','server']);
api.use('artwells:accounts-guest');
api.add_files('accounts-guest-server-tests.js', 'server');
api.add_files('accounts-guest-client-tests.js', 'client');
});
Npm.depends({
'moniker': '0.1.2'
});