{ "name": "smart-contract-starter", "description": "Boilerplate for your next Smart Contract, made simple.", "version": "0.0.1", "author": "Ravindra Kumar ", "license": "MIT", "main": "truffle.js", "directories": { "test": "test" }, "scripts": { "ganache": "ganache-cli -e 300 -p 9545 -m 'candy maple cake sugar pudding cream honey rich smooth crumble sweet treat' --accounts 30 > /dev/null &", "stop": "sudo kill `sudo lsof -t -i:9545`", "test": "npm run ganache sleep 5 && npm run lint ./ && npm run solium && truffle test && npm run stop", "test:gas-reporter": "GAS_REPORTER=true npm run test", "test-ci": "GAS_REPORTER=true npm run ganache sleep 5 && npm run lint ./ && npm run solium && truffle test", "coverage": "./node_modules/.bin/solidity-coverage", "lint": "eslint ./test", "lint:fix": "eslint ./ --fix", "solium": "solium -d contracts/", "solium:fix": "solium -d contracts/ --fix", "build": "npm run clean:contracts && truffle compile" }, "dependencies": { "bn.js": "^4.11.8", "dotenv": "^6.2.0", "ethereumjs-wallet": "^0.6.3", "openzeppelin-solidity": "^2.1.2", "truffle": "^5.0.2", "truffle-hdwallet-provider": "^1.0.2", "web3": "^1.0.0-beta.39", "webpack": "^4.29.0" }, "devDependencies": { "babel-cli": "^6.26.0", "babel-eslint": "10.0.1", "babel-polyfill": "^6.26.0", "babel-preset-env": "^1.7.0", "babel-preset-es2015": "6.24.1", "babel-preset-stage-2": "6.24.1", "babel-preset-stage-3": "6.24.1", "babel-register": "6.26.0", "chai": "4.2.0", "chai-as-promised": "7.1.1", "chai-bignumber": "3.0.0", "coveralls": "3.0.2", "eslint": "5.12.1", "eslint-config-prettier": "^4.0.0", "eslint-config-standard": "^12.0.0", "eslint-plugin-babel": "^5.3.0", "eslint-plugin-compat": "^2.6.3", "eslint-plugin-import": "2.15.0", "eslint-plugin-node": "8.0.1", "eslint-plugin-prettier": "^3.0.1", "eslint-plugin-promise": "4.0.1", "eslint-plugin-security": "^1.4.0", "eslint-plugin-standard": "^4.0.0", "eth-gas-reporter": "^0.1.12", "ganache-cli": "^6.2.5", "mocha-junit-reporter": "^1.18.0", "mocha-multi-reporters": "^1.1.7", "prettier": "^1.16.1", "prettier-plugin-solidity-refactor": "^1.0.0-alpha.14", "solidity-coverage": "0.5.11", "solium": "1.2.2" } }