Vulcan/packages/nova-notifications/package.js
2016-10-19 09:54:15 +02:00

23 lines
No EOL
472 B
JavaScript

Package.describe({
name: "nova:notifications",
summary: "Telescope notifications package",
version: "0.27.3-nova",
git: "https://github.com/TelescopeJS/telescope-notifications.git"
});
Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0");
api.use([
'nova:core@0.27.3-nova',
'nova:email@0.27.3-nova',
'nova:users@0.27.3-nova'
]);
api.addFiles([
'lib/notifications.js',
'lib/custom_fields.js'
], ['client', 'server']);
});