-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
39 lines (33 loc) · 1.37 KB
/
Copy pathpackage.js
File metadata and controls
39 lines (33 loc) · 1.37 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
Package.describe({
name: 'webobservatory:wooidc',
version: '0.0.5',
// Brief, one-line summary of the package.
summary: 'Southampton web observatory OpenID Connect Login flow',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/webobservatory/wooidc.git',
// By default, Meteor will default to using README.md for documentation.
// To avoid submitting documentation, set this field to null.
documentation: 'README.md'
});
Package.onUse(function(api) {
api.use('oauth2@1.1.9', ['client','server']);
api.use('oauth@1.1.10', ['client', 'server']);
api.use('http@1.1.5', ['server']);
api.use('underscore@1.0.8', ['client','server']);
api.use('templating@1.1.9', 'client');
api.use('random@1.0.9', 'client');
api.use('service-configuration@1.0.9', ['client','server']);
api.export('Wooidc');
api.export('selectedWONode');
api.addFiles(['wooidc_configure.html', 'wooidc_configure.js', 'wooidc_check_session.html', 'wooidc_check_session.js'], 'client');
api.addFiles(['wooidc_global_methods.js'], ['client','server']);
api.addFiles('wooidc_server.js', 'server');
api.addFiles('wooidc_client.js', 'client')
api.addAssets('wooidc_rpframe.html', 'client');
});
Package.onTest(function(api) {
api.use('ecmascript');
api.use('tinytest');
api.use('webobservatory:wooidc');
api.addFiles('wooidc-tests.js');
});