forked from ethereum/meteor-package-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.js
More file actions
39 lines (29 loc) · 1.06 KB
/
package.js
File metadata and controls
39 lines (29 loc) · 1.06 KB
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
Package.describe({
name: 'ethereum:tools',
summary: 'Helper functions for dapps',
version: '0.7.0',
git: 'http://github.com/ethereum/meteor-package-tools'
});
Package.onUse(function(api) {
api.versionsFrom('1.0');
api.use('underscore', ['client', 'server']);
api.use('mongo', ['client', 'server']);
api.use('http', ['client', 'server']);
api.use('spacebars', 'client');
api.use('templating', 'client');
api.use('tracker', 'client');
//api.use('numeral:numeral@1.5.3', ['client', 'server']);
api.use('3stack:bignumber@2.0.0', 'client');
api.use('ethereum:web3@0.15.1', ['client', 'server']);
api.use('frozeman:persistent-minimongo@0.1.8', 'client');
api.use('frozeman:storage@0.1.8', 'client');
api.export(['EthTools'], ['client', 'server']);
api.addFiles('ethtools.js', ['client', 'server']);
api.addFiles('ticker.js', ['client', 'server']);
api.addFiles('globalHelpers.js', 'client');
});
Package.onTest(function(api) {
api.use('tinytest');
api.use('ethereum:tools');
api.addFiles('ethtools-tests.js', ['client', 'server']);
});