-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.js
26 lines (24 loc) · 1.01 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
Package.describe({
name: 'mjr:bitfinex-api',
version: '0.0.1',
// Brief, one-line summary of the package.
summary: 'A simple wrapper that allows one to interact with bitfinex',
// URL to the Git repository containing the source code for this package.
git: 'https://github.com/joshuarossi/bitfinex_api.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(['http', 'mongo', 'livedata', 'meteor'], ['server']);
api.use(['templating', 'iron:router@1.0.9', 'meteor-platform']);
api.versionsFrom('1.1.0.2');
api.addFiles(['bitfinex-api.js', 'server/methods.js'], 'server');
api.addFiles(['client/authenticate.html', 'client/authenticate.js','client/router.js'], 'client');
api.export(['bitfinex', 'Bitfinex'], 'server');
});
Package.onTest(function(api) {
api.use('tinytest');
api.use('mjr:bitfinex-api');
api.addFiles('bitfinex-api-tests.js');
});