web3.js/package.js

29 lines
825 B
JavaScript
Raw Normal View History

/* jshint ignore:start */
2015-02-27 00:54:39 -08:00
Package.describe({
name: 'ethereum:js',
2015-03-09 02:24:21 -07:00
version: '0.0.16-rc1',
2015-02-27 00:54:39 -08: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');
api.use('3stack:[email protected]', 'client');
2015-02-27 01:29:55 -08:00
api.export('BigNumber', 'client');
api.export('web3', 'client');
2015-02-27 00:54:39 -08:00
api.addFiles('dist/ethereum.js', 'client');
2015-02-27 01:29:55 -08:00
api.addFiles('package-init.js', 'client');
2015-02-27 00:54:39 -08:00
});
// Package.onTest(function(api) {
// api.use('tinytest');
// api.use('test');
// api.addFiles('test-tests.js');
// });
/* jshint ignore:end */