You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
821 B
30 lines
821 B
10 years ago
|
/* jshint ignore:start */
|
||
|
Package.describe({
|
||
|
name: 'ethereum:js',
|
||
10 years ago
|
version: '0.1.3',
|
||
10 years ago
|
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:bignumber@2.0.0', 'client');
|
||
|
|
||
|
api.export('BigNumber', 'client');
|
||
|
api.export('web3', 'client');
|
||
|
|
||
|
api.addFiles('dist/ethereum.js', 'client');
|
||
|
api.addFiles('package-init.js', 'client');
|
||
|
});
|
||
|
|
||
|
// Package.onTest(function(api) {
|
||
|
// api.use('tinytest');
|
||
|
// api.use('test');
|
||
|
// api.addFiles('test-tests.js');
|
||
|
// });
|
||
|
/* jshint ignore:end */
|