poa-bridge/truffle/package.json

33 lines
1.0 KiB
JSON
Raw Normal View History

{
"name": "parity-bridge",
"version": "1.0.0",
"description": "Bridge between any two ethereum-based networks",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/paritytech/parity-bridge.git"
},
"bugs": {
"url": "https://github.com/paritytech/parity-bridge/issues"
},
"homepage": "https://github.com/paritytech/parity-bridge",
"devDependencies": {
"concurrently": "^3.5.1",
"coveralls": "^3.0.0",
"ganache-cli": "^6.0.3",
"solidity-coverage": "^0.4.2",
2017-12-14 09:33:16 -08:00
"solium": "^1.0.11",
"truffle": "^4.0.1"
},
"dependencies": {},
"scripts": {
2017-12-14 09:34:34 -08:00
"ci": "concurrently \"yarn run solium\" \"yarn run truffle-with-rpc\" \"yarn run solidity-coverage\"",
"ganache": "ganache-cli -p 8547",
"solidity-coverage": "solidity-coverage",
2017-12-14 09:33:16 -08:00
"solium": "solium --dir contracts/",
"test": "yarn run truffle-with-rpc",
"truffle": "truffle test",
"truffle-with-rpc": "concurrently --success first --kill-others \"yarn run ganache\" \"yarn run truffle\""
}
}