Vulcan/packages/nova-api/package.js

20 lines
361 B
JavaScript
Raw Normal View History

Package.describe({
name: "nova:api",
summary: "Telescope API package",
2016-04-14 10:27:27 +09:00
version: "0.26.0-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-04-14 10:27:27 +09:00
api.use(['nova:core@0.26.0-nova']);
2016-02-16 15:08:30 +09:00
api.addFiles([
'lib/server/api.js',
'lib/server/routes.js'
], ['server']);
});