forked from gfk-ba/meteor-notifications
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
executable file
·40 lines (33 loc) · 838 Bytes
/
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: 'sojourneer:notifications',
summary: 'Notifications - Add reactive notifications to any meteor template',
version: '1.1.4',
git: 'https://github.com/Sojourneer/meteor-notifications.git'
});
Package.onUse(function(api) {
api.versionsFrom('[email protected]');
api.use([
'templating',
'underscore',
'less',
'mongo'
], 'client');
api.addFiles([
'globals.js',
'notifications.less',
'notifications.html',
'notifications.js',
'notification.html',
'notification.js',
], 'client');
api.export && api.export('Notifications', 'client');
});
Package.onTest(function(api) {
api.use([
'tinytest',
'underscore',
'gfk:notifications'
], 'client');
api.use(['spacejamio:[email protected]'], 'client');
api.addFiles('notifications_tests.js', 'client');
});