package.json 1.56 KB
Newer Older
XFT-dev's avatar
XFT-dev committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
{
  "name": "solidity-contracts",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "repository": {
    "type": "git",
    "url": "git+https://zokyo-secured@github.com/offshift-protocol/solidity-contracts.git"
  },
  "author": "ZOKYO Team",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/offshift-protocol/solidity-contracts/issues"
  },
  "homepage": "https://github.com/offshift-protocol/solidity-contracts#readme",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "solhint": "./node_modules/.bin/solhint -f table contracts/**/*.sol",
    "prettier:solidity": "./node_modules/.bin/prettier --write contracts/**/*.sol",
    "test:coverage": "truffle run coverage",
    "compile": "npm run clean && truffle compile --all",
    "lint:js": "eslint *.js test/*.js",
    "lint:sol": "solhint contracts/*.sol"
  },
  "dependencies": {
    "@openzeppelin/contracts": "^3.2.1-solc-0.7",
    "@truffle/hdwallet-provider": "^1.2.1",
    "dotenv": "^8.2.0",
    "ganache-cli": "^6.10.1",
    "solc": "^0.7.4",
    "truffle": "^5.1.64"
  },
  "devDependencies": {
    "@openzeppelin/test-helpers": "^0.5.6",
    "chai": "^4.2.0",
    "eslint": "^7.7.0",
    "eslint-config-google": "^0.14.0",
    "eth-gas-reporter": "^0.2.22",
    "eth-sig-util": "^3.0.0",
    "ethlint": "^1.2.5",
    "mocha": "^8.1.1",
    "prettier": "^2.2.1",
    "prettier-plugin-solidity": "^1.0.0-beta.5",
    "solhint": "^3.2.0",
    "solhint-plugin-prettier": "0.0.5",
    "solidity-coverage": "^0.7.16",
    "truffle-plugin-verify": "^0.5.4",
    "web3": "^1.2.11"
  }
}