mirror of
https://github.com/embarklabs/web3.js.git
synced 2026-08-31 06:31:19 +00:00
24 lines
622 B
JavaScript
24 lines
622 B
JavaScript
/* jshint ignore:start */
|
|
Package.describe({
|
|
name: 'ethereum:web3',
|
|
version: '1.2.5',
|
|
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 */
|