-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.js
More file actions
33 lines (28 loc) · 894 Bytes
/
Copy pathpackage.js
File metadata and controls
33 lines (28 loc) · 894 Bytes
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
Package.describe({
name: 'q42:microsoft',
version: '1.0.1',
summary: 'An implementation of the Microsoft OAuth flow.',
git: 'https://github.com/Q42/meteor-microsoft',
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.2.1');
api.use('ecmascript');
api.use('templating', 'client');
api.use('random', 'client');
api.use('oauth2', ['client', 'server']);
api.use('oauth', ['client', 'server']);
api.use('http', 'server');
api.use('service-configuration', ['client', 'server']);
api.export('Microsoft');
api.addFiles('client/configure.html', 'client');
api.addFiles('server/server.js', 'server');
api.addFiles(['client/client.js', 'client/configure.js'], 'client');
});
Package.onTest(function(api) {
api.use('tinytest');
api.use('ecmascript');
api.use('q42:microsoft');
// Tests will follow soon!
api.addFiles([]);
});