Vulcan/packages/nova-api/package.js

18 lines
366 B
JavaScript
Raw Normal View History

Package.describe({
name: "nova:api",
summary: "Telescope API package",
2016-11-15 10:44:01 +01:00
version: "0.27.4-nova",
2015-07-14 16:47:46 +09:00
git: "https://github.com/TelescopeJS/Telescope.git"
});
Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
2016-11-15 10:44:01 +01:00
api.use(['nova:core@0.27.4-nova']);
api.mainModule("lib/server.js", "server");
// api.mainModule("lib/client.js", "client");
});