This repository has been archived by the owner on May 25, 2020. It is now read-only.
forked from apaleslimghost/accounts-pinterest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
51 lines (43 loc) · 1.77 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
Package.describe({
name: 'treecom:accounts-pinterest',
// Brief, one-line summary of the package.
summary: 'Oauth login for Pinterest',
version: '1.0.3',
// URL to the Git repository containing the source code for this package.
git: "https://github.com/Treecom/accounts-pinterest.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('accounts-base', ['client', 'server']);
api.imply('accounts-base', ['client', 'server']);
api.use('accounts-oauth', ['client', 'server']);
api.imply('accounts-oauth', ['client', 'server']);
api.use('oauth', ['client', 'server']);
api.use('oauth2', ['client', 'server']);
api.use('http', ['server']);
api.use('underscore', 'server');
api.use('random', 'client');
api.use('service-configuration', ['client', 'server']);
api.add_files('pinterest_client.js', 'client');
api.add_files('pinterest_server.js', 'server');
api.add_files("pinterest.js");
api.export('Pinterest');
});
Package.onTest(function(api) {
api.use('[email protected]', ['client', 'server']);
api.imply('accounts-base', ['client', 'server']);
api.use('[email protected]', ['client', 'server']);
api.imply('accounts-oauth', ['client', 'server']);
api.use('[email protected]', ['client', 'server']);
api.use('[email protected]', ['client', 'server']);
api.use('[email protected]', ['server']);
api.use('[email protected]', 'server');
api.use('[email protected]', 'client');
api.use('[email protected]', ['client', 'server']);
api.add_files('pinterest_client.js', 'client');
api.add_files('pinterest_server.js', 'server');
api.add_files("pinterest.js");
api.export('Pinterest');
});