Merge branch 'master' into feature/merkleproof
Showing
.coveralls.yml
deleted
100644 → 0
.solcover.js
0 → 100644
contracts/ECRecovery.sol
0 → 100644
contracts/MultisigWallet.sol
deleted
100644 → 0
contracts/crowdsale/CappedCrowdsale.sol
0 → 100644
contracts/crowdsale/Crowdsale.sol
0 → 100644
contracts/crowdsale/FinalizableCrowdsale.sol
0 → 100644
contracts/crowdsale/RefundVault.sol
0 → 100644
contracts/crowdsale/RefundableCrowdsale.sol
0 → 100644
contracts/examples/SampleCrowdsale.sol
0 → 100644
contracts/math/SafeMath.sol
0 → 100644
contracts/ownership/CanReclaimToken.sol
0 → 100644
contracts/ownership/Multisig.sol
deleted
100644 → 0
contracts/ownership/Shareable.sol
deleted
100644 → 0
contracts/token/BurnableToken.sol
0 → 100644
contracts/token/CrowdsaleToken.sol
deleted
100644 → 0
contracts/token/SafeERC20.sol
0 → 100644
contracts/token/TokenTimelock.sol
0 → 100644
docs/source/crowdsaletoken.rst
deleted
100644 → 0
docs/source/ecrecovery.rst
0 → 100644
docs/source/math.rst
0 → 100644
package-lock.json
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
| { | { | ||
| "name": "zeppelin-solidity", | "name": "zeppelin-solidity", | ||
| "version": "1.0.7", | "version": "1.2.0", | ||
| "description": "Secure Smart Contract library for Solidity", | "description": "Secure Smart Contract library for Solidity", | ||
| "main": "truffle.js", | |||
| "scripts": { | "scripts": { | ||
| "test": "scripts/test.sh", | "test": "scripts/test.sh", | ||
| "console": "truffle console", | "console": "truffle console", | ||
| "install": "scripts/install.sh", | "coverage": "scripts/coverage.sh" | ||
| "coverage": "scripts/coverage.sh", | |||
| "coveralls": "scripts/coveralls.sh" | |||
| }, | }, | ||
| "repository": { | "repository": { | ||
| "type": "git", | "type": "git", | ||
| ... | @@ -28,19 +25,21 @@ | ... | @@ -28,19 +25,21 @@ |
| "url": "https://github.com/OpenZeppelin/zeppelin-solidity/issues" | "url": "https://github.com/OpenZeppelin/zeppelin-solidity/issues" | ||
| }, | }, | ||
| "homepage": "https://github.com/OpenZeppelin/zeppelin-solidity", | "homepage": "https://github.com/OpenZeppelin/zeppelin-solidity", | ||
| "dependencies": { | |||
| "truffle-hdwallet-provider": "0.0.3" | |||
| }, | |||
| "devDependencies": { | "devDependencies": { | ||
| "babel-polyfill": "^6.23.0", | |||
| "babel-preset-es2015": "^6.18.0", | "babel-preset-es2015": "^6.18.0", | ||
| "babel-preset-stage-2": "^6.18.0", | "babel-preset-stage-2": "^6.18.0", | ||
| "babel-preset-stage-3": "^6.17.0", | "babel-preset-stage-3": "^6.17.0", | ||
| "babel-register": "^6.23.0", | "babel-register": "^6.23.0", | ||
| "chai": "^4.0.2", | |||
| "chai-as-promised": "^7.0.0", | |||
| "chai-bignumber": "^2.0.0", | |||
| "coveralls": "^2.13.1", | "coveralls": "^2.13.1", | ||
| "ethereumjs-testrpc": "^3.0.2", | |||
| "ethereumjs-util": "^5.1.2", | "ethereumjs-util": "^5.1.2", | ||
| "ethereumjs-testrpc": "^4.1.1", | |||
| "mocha-lcov-reporter": "^1.3.0", | "mocha-lcov-reporter": "^1.3.0", | ||
| "solidity-coverage": "^0.1.0", | "solidity-coverage": "^0.2.2", | ||
| "truffle": "3.2.2" | "truffle": "^3.4.6", | ||
| "truffle-hdwallet-provider": "0.0.3" | |||
| } | } | ||
| } | } |
scripts/coveralls.sh
deleted
100755 → 0
scripts/install.sh
deleted
100755 → 0
test/BurnableToken.js
0 → 100644
test/CanReclaimToken.js
0 → 100644
test/CappedCrowdsale.js
0 → 100644
test/Crowdsale.js
0 → 100644
test/ECRecovery.js
0 → 100644
test/FinalizableCrowdsale.js
0 → 100644
test/MultisigWallet.js
deleted
100644 → 0
test/RefundVault.js
0 → 100644
test/RefundableCrowdsale.js
0 → 100644
test/SafeERC20.js
0 → 100644
test/SampleCrowdsale.js
0 → 100644
test/Shareable.js
deleted
100644 → 0
test/TokenTimelock.js
0 → 100644
test/helpers/BurnableTokenMock.sol
0 → 100644
test/helpers/CappedCrowdsaleImpl.sol
0 → 100644
test/helpers/EVMThrow.js
0 → 100644
test/helpers/FinalizableCrowdsaleImpl.sol
0 → 100644
test/helpers/MultisigWalletMock.sol
deleted
100644 → 0
test/helpers/RefundableCrowdsaleImpl.sol
0 → 100644
test/helpers/SafeERC20Helper.sol
0 → 100644
test/helpers/ShareableMock.sol
deleted
100644 → 0
test/helpers/advanceToBlock.js
0 → 100644
test/helpers/ether.js
0 → 100644
test/helpers/hashMessage.js
0 → 100644
test/helpers/increaseTime.js
0 → 100644
test/helpers/latestTime.js
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
Please
register
or
sign in
to comment