forked from alexpods/meteor-accounts-vk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
32 lines (26 loc) · 1.09 KB
/
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
28
29
30
31
32
Package.describe({
summary: "Login service for VKontakte accounts (https://vk.com)",
version: "1.0.3",
git: "https://github.com/alexpods/meteor-accounts-vk",
name: "nekolski:accounts-vk"
});
Package.on_use(function(api) {
api.versionsFrom('[email protected]');
api.use('accounts-base', ['client', 'server']);
api.imply('accounts-base', ['client', 'server']);
api.use('accounts-oauth', ['client', 'server']);
api.imply('accounts-oauth', ['client', 'server']);
api.use('service-configuration', ['client', 'server']);
api.imply('service-configuration', ['client', 'server']);
api.use('oauth2', ['client', 'server']);
api.use('oauth', ['client', 'server']);
api.use('http', ['server']);
api.use('underscore', 'server');
api.use('random', 'client');
api.use('templating', 'client');
api.add_files("lib/accounts_vk.js");
api.add_files('lib/vk_client.js', 'client');
api.add_files('lib/vk_server.js', 'server');
api.export('VK');
api.add_files(['lib/vk_configure.html', 'lib/vk_configure.js', 'lib/vk_styles.css'], 'client');
});