2015-04-22 07:50:11 +09:00
|
|
|
Package.describe({
|
2016-02-24 10:09:23 +09:00
|
|
|
name: 'nova:users',
|
2015-04-22 07:50:11 +09:00
|
|
|
summary: 'Telescope permissions.',
|
2017-03-08 11:48:47 +00:00
|
|
|
version: "1.2.0",
|
2015-05-16 12:05:53 +09:00
|
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
2015-04-22 07:50:11 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
|
|
|
|
api.use([
|
2017-03-08 11:48:47 +00:00
|
|
|
'nova:lib@1.2.0'
|
2016-06-23 15:00:58 +09:00
|
|
|
]);
|
2016-12-08 23:48:16 +01:00
|
|
|
|
2016-06-23 15:00:58 +09:00
|
|
|
api.mainModule("lib/server.js", "server");
|
|
|
|
api.mainModule("lib/client.js", "client");
|
2015-04-22 07:50:11 +09:00
|
|
|
|
|
|
|
});
|