Vulcan/packages/nova-users/package.js

21 lines
406 B
JavaScript
Raw Normal View History

Package.describe({
name: 'nova:users',
summary: 'Telescope permissions.',
2016-10-19 09:54:15 +02:00
version: '0.27.3-nova',
2015-05-16 12:05:53 +09:00
git: "https://github.com/TelescopeJS/Telescope.git"
});
Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
2016-10-19 09:54:15 +02:00
'nova:core@0.27.3-nova',
'nova:email@0.27.3-nova'
2016-06-23 15:00:58 +09:00
]);
2015-06-16 16:32:53 +09:00
2016-06-23 15:00:58 +09:00
api.mainModule("lib/server.js", "server");
api.mainModule("lib/client.js", "client");
});