mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 04:16:37 -04:00
23 lines
409 B
JavaScript
23 lines
409 B
JavaScript
Package.describe({
|
|
name: "telescope:scoring",
|
|
summary: "Telescope scoring package.",
|
|
version: "0.22.2",
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom("METEOR@1.0");
|
|
|
|
api.use(['telescope:core@0.22.2']);
|
|
|
|
api.addFiles([
|
|
'lib/scoring.js',
|
|
], ['client','server']);
|
|
|
|
api.addFiles([
|
|
'lib/server/cron.js',
|
|
], ['server']);
|
|
|
|
|
|
});
|