mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
18 lines
488 B
JavaScript
18 lines
488 B
JavaScript
Package.describe({
|
|
summary: "Common code for OAuth2-based login services",
|
|
version: "1.1.1"
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
api.use('service-configuration', ['client', 'server']);
|
|
api.use('oauth', ['client', 'server']);
|
|
|
|
api.add_files('oauth2_server.js', 'server');
|
|
});
|
|
|
|
Package.on_test(function (api) {
|
|
api.use(['tinytest', 'random', 'oauth2', 'oauth', 'service-configuration', 'oauth-encryption'],
|
|
'server');
|
|
api.add_files("oauth2_tests.js", 'server');
|
|
});
|