xdc-web
Version:
XinFin JavaScript API wrapper repository
24 lines (18 loc) • 630 B
JavaScript
/* jshint ignore:start */
Package.describe({
name: 'ethereum:web3',
version: '1.0.0-beta.36',
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'
});
// Npm.depends({
// "xmlhttprequest": "1.7.0"
// });
Package.onUse(function(api) {
api.versionsFrom('1.0.3.2');
api.addFiles('dist/web3.js', ['client']); // 'server'
});
/* jshint ignore:end */