2015-02-27 13:05:00 +00:00
|
|
|
/* jshint ignore:start */
|
2015-02-27 08:54:39 +00:00
|
|
|
Package.describe({
|
2015-04-13 10:21:56 +00:00
|
|
|
name: 'ethereum:web3',
|
2015-06-23 14:23:36 +00:00
|
|
|
version: '0.6.1',
|
2015-02-27 08:54:39 +00:00
|
|
|
summary: 'Ethereum JavaScript API, middleware to talk to a ethreum node over RPC',
|
|
|
|
git: 'https://github.com/ethereum/ethereum.js',
|
|
|
|
// 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.versionsFrom('1.0.3.2');
|
|
|
|
|
2015-03-16 09:48:19 +00:00
|
|
|
// api.use('3stack:bignumber@2.0.0', 'client');
|
2015-02-27 08:54:39 +00:00
|
|
|
|
2015-06-18 09:13:27 +00:00
|
|
|
api.export(['web3', 'BigNumber'], ['client', 'server']);
|
2015-02-27 09:29:55 +00:00
|
|
|
|
2015-04-13 10:15:45 +00:00
|
|
|
api.addFiles('dist/web3.js', 'client');
|
2015-02-27 09:29:55 +00:00
|
|
|
api.addFiles('package-init.js', 'client');
|
2015-02-27 08:54:39 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
// Package.onTest(function(api) {
|
|
|
|
// api.use('tinytest');
|
|
|
|
// api.use('test');
|
|
|
|
// api.addFiles('test-tests.js');
|
|
|
|
// });
|
2015-03-10 16:33:56 +00:00
|
|
|
/* jshint ignore:end */
|