{
  "name": "@authereum/contracts",
  "version": "1.0.1",
  "description": "Ethereum smart contract for Authereum",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "directories": {
    "test": "test"
  },
  "scripts": {
    "dev": "tsc --watch",
    "build": "tsc",
    "clean": "rimraf dist",
    "ganache": "ganache-cli -h 0.0.0.0 -p 8545 -d -a 11 -e 1000 -i 1234 -k muirGlacier",
    "lint": "tslint --fix -c tslint.json src/*.ts src/**/*.ts src/**/**/*.ts",
    "publish-module": "npm publish --tag beta --access public",
    "dist-tag": "npm dist-tag add \"@authereum/contracts@$(jq -r .version <package.json)\" latest",
    "truffle-reset": "rimraf build && truffle compile && truffle migrate --reset",
    "bump": "lerna-sync-version",
    "release": "npm run clean && npm test && npm run publish-module && npm run dist-tag",
    "bump-release": "npm run bump && npm run release",
    "prepare": "npm run lint && npm run build",
    "docker": "npm run docker:build && npm run docker:run",
    "docker:build": "docker build -t authereum/ganache .",
    "docker:run": "docker run -p 8545:8545 authereum/ganache"
  },
  "author": "",
  "license": "MIT",
  "dependencies": {
    "@authereum/utils": "0.1.0",
    "@openzeppelin/contracts": "2.5.0",
    "@openzeppelin/test-helpers": "0.5.6",
    "@truffle/contract": "^4.1.0",
    "@types/isomorphic-fetch": "0.0.35",
    "@types/node": "^12.12.37",
    "colors": "1.4.0",
    "eth-ens-namehash": "^2.0.8",
    "ethereum-hdwallet": "0.0.26",
    "ethereumjs-util": "^6.1.0",
    "ethers": "^4.0.33",
    "ganache-core": "^2.8.0",
    "is-valid-signature": "0.1.3",
    "isomorphic-fetch": "2.2.1",
    "jest": "^24.9.0",
    "openzeppelin-eth": "^2.2.0",
    "openzeppelin-solidity": "^2.3.0",
    "solc": "^0.5.8",
    "solidity-bytes-utils": "0.0.8",
    "truffle": "5.1.0",
    "truffle-plugin-verify": "^0.3.9",
    "truffle-privatekey-provider": "^1.3.0",
    "typescript": "^3.7.2",
    "web3": "1.2.4",
    "web3-providers-ws": "1.2.4",
    "zeppelin-solidity": "^1.12.0"
  },
  "devDependencies": {
    "@types/jest": "^24.0.15",
    "@typescript-eslint/eslint-plugin": "^1.11.0",
    "@typescript-eslint/parser": "^1.11.0",
    "chai": "^4.2.0",
    "dotenv": "^8.0.0",
    "eslint-config-standard-with-typescript": "^7.1.0",
    "eslint-plugin-import": "^2.18.0",
    "eslint-plugin-node": "^9.1.0",
    "eslint-plugin-promise": "^4.2.1",
    "eslint-plugin-standard": "^4.0.0",
    "jest": "^24.9.0",
    "lerna-sync-version": "0.0.3",
    "rimraf": "3.0.2",
    "standard": "^12.0.1",
    "standardx": "^3.0.1",
    "ts-jest": "^24.0.2",
    "tslint": "^5.18.0",
    "tslint-config-standard": "^8.0.1"
  },
  "keywords": [],
  "files": [
    "audits/",
    "contracts/",
    "migrations/",
    "test/",
    ".editorconfig",
    ".npmignore",
    ".npmrc",
    "Makefile",
    "truffle.js",
    "tsconfig.json",
    "tslint.json"
  ],
  "standardx": {
    "globals": [
      "describe",
      "context",
      "before",
      "beforeEach",
      "after",
      "afterEach",
      "it",
      "expect"
    ]
  }
}
