Files
meteor/packages/meetup/package.js
2014-04-21 13:39:36 -07:00

27 lines
756 B
JavaScript

Package.describe({
summary: "Meetup OAuth flow",
version: "1.0.0",
// internal for now. Should be external when it has a richer API to do
// actual API things with the service, not just handle the OAuth flow.
internal: true
});
Package.on_use(function(api) {
api.use('oauth2', ['client', 'server']);
api.use('oauth', ['client', 'server']);
api.use('http', ['server']);
api.use('templating', 'client');
api.use('underscore', 'client');
api.use('random', 'client');
api.use('service-configuration', ['client', 'server']);
api.export('Meetup');
api.add_files(
['meetup_configure.html', 'meetup_configure.js'],
'client');
api.add_files('meetup_server.js', 'server');
api.add_files('meetup_client.js', 'client');
});