{
  "name": "@meterio/devkit",
  "version": "1.8.2",
  "description": "Typescript library to aid DApp development on Meter network",
  "main": "dist/index.js",
  "typings": "dist/index.d.ts",
  "scripts": {
    "build": "tsc -p .",
    "lint": "eslint -c .eslintrc.js --ext .ts src",
    "prepare": "rm -rf dist/; npm run build",
    "test": "NODE_ENV=test mocha --require ts-node/register --timeout 20000 --recursive  './**/*.test.ts'",
    "cover": "NODE_ENV=test nyc npm t",
    "coverall": "NODE_ENV=test nyc npm t && nyc report --reporter=text-lcov | coveralls"
  },
  "nyc": {
    "include": [
      "src/**/*.ts"
    ],
    "exclude": [
      "tests/",
      "**/*.d.ts"
    ],
    "extension": [
      ".ts"
    ],
    "require": [
      "ts-node/register"
    ],
    "reporter": [
      "json",
      "html",
      "text-summary"
    ],
    "all": true
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/meterio/devkit.git"
  },
  "keywords": [
    "meter",
    "blockchain",
    "dapp",
    "tx",
    "transaction",
    "crypto",
    "mnemonic",
    "keystore",
    "abi"
  ],
  "author": "simonzg",
  "license": "LGPL-3.0",
  "bugs": {
    "url": "https://github.com/meterio/devkit/issues"
  },
  "homepage": "https://github.com/meterio/devkit#readme",
  "devDependencies": {
    "@types/aes-js": "^3.1.1",
    "@types/chai": "^4.3.0",
    "@types/elliptic": "^6.4.14",
    "@types/mocha": "^10.0.0",
    "@types/node": "^18.0.0",
    "@types/scrypt-js": "^2.0.1",
    "@types/uuid": "^9.0.0",
    "@typescript-eslint/eslint-plugin": "^5.15.0",
    "@typescript-eslint/parser": "^5.15.0",
    "chai": "^4.3.6",
    "coveralls": "^3.1.1",
    "eslint": "^8.0.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-prettier": "^4.0.0",
    "mocha": "^10.0.0",
    "nyc": "^15.1.0",
    "prettier": "^2.5.1",
    "ts-node": "^10.7.0",
    "typescript": "^5.0.2"
  },
  "dependencies": {
    "aes-js": "^3.1.2",
    "bignumber.js": "^9.0.2",
    "blakejs": "^1.1.2",
    "elliptic": "^6.5.4",
    "ethers": "^5.7.0",
    "fast-json-stable-stringify": "^2.1.0",
    "js-sha3": "^0.8.0",
    "rlp": "^3.0.0",
    "scrypt-js": "^2.0.4",
    "uuid": "^9.0.0"
  }
}
