forked from acemtp/meteor-accounts-slack
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.js
executable file
·27 lines (23 loc) · 842 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
26
27
Package.describe({
summary: "Login service for Slack accounts",
version: "1.0.6",
git: "https://github.com/efounders/meteor-accounts-slack.git",
name: "acemtp:accounts-slack"
});
Package.on_use(function(api) {
api.versionsFrom("[email protected]");
api.use('oauth2', ['client', 'server']);
api.use('oauth', ['client', 'server']);
api.use('http', ['server']);
api.use('templating', 'client');
api.use('underscore', 'client');
api.use('random', 'client');
api.use('service-configuration', ['client', 'server']);
api.use('accounts-base', ['client', 'server']);
api.use('accounts-oauth', ['client', 'server']);
api.add_files('slack_server.js', 'server');
api.add_files(
['slack_login_button.css', 'slack_client.js', 'slack_configure.html', 'slack_configure.js'],
'client');
api.add_files("slack.js");
});