forked from ethereum/meteor-package-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.js
37 lines (29 loc) · 1.07 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
Package.describe({
name: "ethereum:tools",
summary: "Helper functions for dapps",
version: "1.1.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@1.0.0-beta.33", ["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"]);
});