forked from Dispatch-Archive/meteor-accounts-sms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
30 lines (24 loc) · 692 Bytes
/
package.js
File metadata and controls
30 lines (24 loc) · 692 Bytes
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
Package.describe({
name: 'dispatch:accounts-sms',
version: '1.0.0',
summary: 'Allow users to login with their phone number.',
git: 'https://github.com/DispatchMe/meteor-accounts-sms.git'
});
Package.onUse(function (api) {
api.versionsFrom('1.0');
api.use([
'random',
'jperl:match-ex@1.0.0',
'mongo'
], 'server');
api.use([
'accounts-base',
'check',
'dispatch:twilio@1.0.1'
], ['client', 'server']);
// Export Accounts (etc) to packages using this one.
api.imply('accounts-base', ['client', 'server']);
api.addFiles('sms.js', ['client', 'server']);
api.addFiles('sms_server.js', 'server');
api.addFiles('sms_client.js', 'client');
});