fix stoppablebid, add package.json

pull/14/head
Manuel Araoz 9 years ago
parent f8e6a13d3b
commit 99c8ac9a28
  1. 4
      contracts/examples/StoppableBid.sol
  2. 29
      package.json
  3. 3
      scripts/install.sh

@ -1,5 +1,5 @@
import './PullPaymentCapable.sol';
import './Stoppable.sol';
import '../PullPaymentCapable.sol';
import '../Stoppable.sol';
contract StoppableBid is Stoppable, PullPaymentCapable {
address public highestBidder;

@ -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 <manuelaraoz@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/OpenZeppelin/zeppelin-solidity/issues"
},
"homepage": "https://github.com/OpenZeppelin/zeppelin-solidity"
}

@ -0,0 +1,3 @@
#! /bin/bash
mkdir -p ../../contracts/zeppelin && cp -r contracts/* "$_"
Loading…
Cancel
Save