-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.js
More file actions
21 lines (18 loc) · 537 Bytes
/
package.js
File metadata and controls
21 lines (18 loc) · 537 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* global Package */
Package.describe({
name: 'socialize:messaging',
summary: 'A social messaging package',
version: '1.2.3',
git: 'https://github.com/copleykj/socialize-messaging.git',
});
Package.onUse(function _(api) {
api.versionsFrom(['1.10.2', '2.3']);
api.use([
'check',
'socialize:user-presence@1.0.4',
'socialize:linkable-model@1.0.6',
'reywood:publish-composite@1.7.3',
]);
api.mainModule('server.js', 'server');
api.mainModule('common.js', 'client');
});