add bignumber to dependencies so BigNumber can be used in onDeploy

This commit is contained in:
Iuri Matias 2015-10-21 17:26:57 -04:00 committed by Aakil Fernandes
parent 171fefbda1
commit bd76193ac8
2 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,7 @@ var fs = require('fs');
var grunt = require('grunt'); var grunt = require('grunt');
var readYaml = require('read-yaml'); var readYaml = require('read-yaml');
var Config = require('./config/config.js'); var Config = require('./config/config.js');
var BigNumber = require('bignumber.js');
Deploy = function(env, contractFiles, blockchainConfig, contractsConfig, chainManager, withProvider, withChain, _web3) { Deploy = function(env, contractFiles, blockchainConfig, contractsConfig, chainManager, withProvider, withChain, _web3) {
if (_web3 !== undefined) { if (_web3 !== undefined) {

View File

@ -22,7 +22,8 @@
"shelljs": "^0.5.0", "shelljs": "^0.5.0",
"solc": "^0.1.6", "solc": "^0.1.6",
"toposort": "^0.2.10", "toposort": "^0.2.10",
"web3": "^0.15.0", "web3": "^0.8.1",
"bignumber.js": "debris/bignumber.js#master",
"wrench": "^1.5.8", "wrench": "^1.5.8",
"ethersim": "^0.1.1" "ethersim": "^0.1.1"
}, },