forked from optune/meteor-auth0-oauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
25 lines (22 loc) · 787 Bytes
/
package.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Package.describe({
name: 'optune:auth0-oauth',
version: '0.0.1',
summary: 'OAuth handler for Auth0',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.3');
api.use('ecmascript');
api.use('oauth2', ['client', 'server']);
api.use('oauth', ['client', 'server']);
api.use('http', ['server']);
api.use(['underscore', 'service-configuration'], ['client', 'server']);
api.use(['random', 'templating'], 'client');
api.use('accounts-oauth', ['client', 'server']);
api.use('accounts-base', ['client', 'server']);
// Export Accounts (etc) to packages using this one.
api.imply('accounts-base', ['client', 'server']);
api.export('Auth0');
api.addFiles('auth0_server.js', 'server');
api.addFiles('auth0_client.js', 'client');
});