-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.js
More file actions
36 lines (32 loc) · 866 Bytes
/
package.js
File metadata and controls
36 lines (32 loc) · 866 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
31
32
33
34
35
36
Package.describe({
name: 'ostrio:mailer',
version: '4.0.0',
summary: '📮 Email queue extending nodemailer with multi-SMTP transports and horizontally scaled apps support',
git: 'https://github.com/veliovgroup/mail-time',
documentation: 'README.md'
});
Package.onUse((api) => {
Npm.depends({
josk: '6.0.0',
});
api.versionsFrom(['1.12', '2.16', '3.0', '3.4']);
api.use([
'ecmascript@0.14.0 || 0.16.0',
'mongo@1.10.0 || 1.16.0 || 2.0.4',
'zodern:types@1.0.13',
], 'server');
api.mainModule('index.js', 'server');
});
Package.onTest((api) => {
Npm.depends({
chai: '6.2.2',
pg: '8.20.0',
redis: '5.12.1',
});
api.use([
'ecmascript@0.14.0 || 0.16.0',
'mongo@1.10.0 || 1.16.0 || 2.0.4',
'meteortesting:mocha@1.2.0 || 2.1.0 || 3.2.0',
], 'server');
api.addFiles('test/meteor.js', 'server');
});