-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.js
More file actions
28 lines (22 loc) · 837 Bytes
/
package.js
File metadata and controls
28 lines (22 loc) · 837 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
Package.describe({
name: 'selaias:underarmour',
version: '0.1.0',
summary: 'An implementation of the Under Armour (mapmyrun) OAuth flow.',
git: 'https://github.com/selaias/underarmour.git',
documentation: 'README.md'
});
Npm.depends({'request': "2.53.0"});
Package.onUse(function(api) {
api.versionsFrom('1.0.3.1');
api.use('oauth2', ['client', 'server']);
api.use('oauth', ['client', 'server']);
api.use('http', ['server']);
api.use('templating', 'client');
api.use('underscore', 'server');
api.use('random', 'client');
api.use('service-configuration', ['client', 'server']);
api.addFiles(['underarmour_configure.html', 'underarmour_configure.js'], 'client');
api.addFiles('underarmour_client.js', 'client');
api.addFiles('underarmour_server.js', 'server');
api.export('UnderArmour');
});