UNPKG

shadows-contract

Version:

The smart contracts which make up the Shadows system. (shadows.link)

99 lines (98 loc) 3.09 kB
{ "name": "shadows-contract", "version": "1.0.2", "license": "MIT", "author": "shadowsnetwork", "description": "The smart contracts which make up the Shadows system. (shadows.link)", "scripts": { "clean-install": "rm -rf build && rm ./package-lock.json && rm -rf node_modules/* && npm install", "coverage": "solidity-coverage", "format": "prettier --write \"contracts/**/*.sol\" \"**/*.js\"", "ganache": "ganache-cli -e 1000000000000 -l 8000000 -t 2019-03-06T00:00:00", "ganache:int": "npm run ganache -- --acctKeys keys.json", "lint": "solhint \"contracts/**/*.sol\" && eslint \"**/*.js\"", "lint:fix": "eslint --fix \"**/*.js\"", "test": "concurrently --kill-others --success first \"npm run ganache > /dev/null\" \"wait-port 8545 && truffle compile && truffle test ${TRUFFLE_TEST:=test/contracts/*}\"", "test:gas": "npm test; EXIT_CODE=$?; cat test-gas-used.log; printf \"\\n\"; exit $EXIT_CODE;", "test:publish": "concurrently --kill-others --success first \"npm run ganache:int > /dev/null\" \"wait-port 8545 && mocha test/publish\"", "test:testnet": "node test/testnet", "test:kovan": "node test/testnet --network kovan --yes", "test:local": "concurrently --kill-others --success first \"npm run ganache:int > /dev/null\" \"wait-port 8545 && node test/testnet --network local --yes\"", "truffle": "truffle" }, "repository": { "type": "git", "url": "git+https://github.com/ShadowsNetwork/shadows-contract.git" }, "keywords": [ "Shadows", "Solidity", "Truffle", "DOWS" ], "engines": { "node": ">=8.10.0" }, "files": [ "index.js", "bin.js", "publish/deployed/*/synths.json", "publish/deployed/*/deployment.json" ], "bin": { "dows": "bin.js" }, "main": "index.js", "bugs": { "url": "https://github.com/ShadowsNetwork/shadows-contract/issues" }, "homepage": "https://shadows.link", "directories": { "test": "test" }, "devDependencies": { "@codechecks/client": "0.1.10", "abi-decoder": "2.3.0", "axios": "^0.18.0", "bip39": "^2.5.0", "bn.js": "^4.11.9", "chalk": "^2.4.2", "concurrently": "4.1.0", "dotenv": "^6.1.0", "eslint": "^5.5.0", "eslint-config-prettier": "^3.6.0", "eslint-config-standard": "^12.0.0", "eslint-plugin-havven": "^1.0.0", "eslint-plugin-import": "^2.14.0", "eslint-plugin-node": "^7.0.1", "eslint-plugin-prettier": "^2.6.2", "eslint-plugin-promise": "^4.0.1", "eslint-plugin-standard": "^4.0.0", "eth-gas-reporter": "0.2.12", "ganache-cli": "6.8.2", "glob": "^7.1.3", "mkdirp": "^0.5.1", "mocha": "6.2.2", "prettier": "^1.14.2", "prettier-plugin-solidity": "~1.0.0-alpha.37", "rimraf": "^2.6.2", "seedrandom": "^2.4.4", "solc": "0.4.25", "solhint": "^2.3.0", "solidifier": "^2.0.0", "solidity-coverage": "0.6.7", "solium": "1.1.8", "table": "^5.0.2", "truffle": "5.1.4", "typedarray-to-buffer": "^3.1.5", "wait-port": "^0.2.2", "web3": "1.3.4" }, "dependencies": { "chainlink": "0.7.10", "commander": "^2.19.0", "openzeppelin-solidity": "2.0.0", "pretty-error": "^2.1.1", "web3-utils": "1.2.2" } }