Vulcan/packages/nova-email/package.js

20 lines
381 B
JavaScript
Raw Normal View History

Package.describe({
name: "nova:email",
summary: "Telescope email package",
2016-10-01 18:11:37 +02:00
version: "0.27.2-nova",
git: "https://github.com/TelescopeJS/telescope-email.git"
});
Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
2016-10-01 18:11:37 +02:00
'nova:core@0.27.2-nova'
]);
2016-06-23 16:42:06 +09:00
api.mainModule("lib/server.js", "server");
api.mainModule("lib/client.js", "client");
});