-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.js
40 lines (36 loc) · 1 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
36
37
38
39
40
Package.describe({
name: 'ibrahimzahoor:easy-messaging',
version: '0.3.2',
summary: 'Built on socialize:messaging, provide full messaging kit',
git: 'https://github.com/ibrahimzahoor/easy-messaging.git',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.3.3');
api.use(['ecmascript', 'check', 'underscore', 'templating', 'reactive-dict']);
// api.imply([
// 'socialize:[email protected]',
// 'socialize:[email protected]'
// ]);
api.use([
'socialize:[email protected]',
'socialize:[email protected]',
'mizzao:[email protected]',
'reywood:[email protected]',
'tmeasday:[email protected]',
]);
api.mainModule('server.js', 'server');
api.mainModule('client.js', 'client');
api.export([
'Conversation',
'Participant',
'Message',
'User'
]);
});
Package.onTest(function(api) {
api.use('ecmascript');
api.use('tinytest');
api.use('ibrahimzahoor:easy-messaging');
api.mainModule('tests/easy-messaging-tests.js');
});