diff --git a/contracts/examples/StoppableBid.sol b/contracts/examples/StoppableBid.sol index fa5ac0707..072a06cc2 100644 --- a/contracts/examples/StoppableBid.sol +++ b/contracts/examples/StoppableBid.sol @@ -1,5 +1,5 @@ -import './PullPaymentCapable.sol'; -import './Stoppable.sol'; +import '../PullPaymentCapable.sol'; +import '../Stoppable.sol'; contract StoppableBid is Stoppable, PullPaymentCapable { address public highestBidder; diff --git a/package.json b/package.json new file mode 100644 index 000000000..47d712124 --- /dev/null +++ b/package.json @@ -0,0 +1,29 @@ +{ + "name": "zeppelin-solidity", + "version": "0.0.4", + "description": "Secure Smart Contract library for Solidity", + "main": "truffle.js", + "devDependencies": {}, + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1", + "install": "scripts/install.sh" + }, + "repository": { + "type": "git", + "url": "https://github.com/OpenZeppelin/zeppelin-solidity.git" + }, + "keywords": [ + "solidity", + "ethereum", + "smart", + "contracts", + "security", + "zeppelin" + ], + "author": "Manuel Araoz ", + "license": "MIT", + "bugs": { + "url": "https://github.com/OpenZeppelin/zeppelin-solidity/issues" + }, + "homepage": "https://github.com/OpenZeppelin/zeppelin-solidity" +} diff --git a/scripts/install.sh b/scripts/install.sh new file mode 100755 index 000000000..0b18c9c6f --- /dev/null +++ b/scripts/install.sh @@ -0,0 +1,3 @@ +#! /bin/bash + +mkdir -p ../../contracts/zeppelin && cp -r contracts/* "$_"