{
    "name": "@renproject/chains-ethereum",
    "version": "3.5.2",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/renproject/ren-js.git"
    },
    "publishConfig": {
        "access": "public",
        "directory": "build"
    },
    "author": "Ren",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/renproject/ren-js/issues"
    },
    "main": "./index.js",
    "typings": "./index.d.ts",
    "module": "./module/index.js",
    "scripts": {
        "clean": "yarn rimraf ./build ./node_modules",
        "link": "yarn build:link && cd build && yarn link",
        "unlink": "yarn unlink",
        "build": "run-s build:*",
        "build:main": "tsc -p tsconfig.json",
        "build:module": "tsc -p tsconfig.module.json",
        "build:link": "cp package.json build && cp README.md build && sed -i.tmp 's/\\/build\\//\\//' ./package.json && rm ./build/package.json.tmp",
        "prettier": "yarn fix:prettier",
        "lint": "run-s lint:*",
        "lint:eslint": "eslint --config ../../../.eslintrc.js src",
        "lint:prettier": "prettier --check \"./(src|test)/**/*.ts*\"",
        "fix": "run-s fix:*",
        "fix:eslint": "yarn lint:eslint --fix",
        "fix:prettier": "prettier --write './(src|test)/**/*.ts*'",
        "test": "run-s test:* lint",
        "test:unit": "nyc ../../../node_modules/ts-mocha/bin/ts-mocha --bail --sort --exit --timeout 180000 --paths -p ./tsconfig.json ./test/*.spec.ts ./test/**/*.spec.ts --ignore ./test/testutils/chai.d.ts",
        "watch": "run-s build:main && run-s \"build:main -- -w\"",
        "cov": "run-s build:main test:unit cov:html && echo \"\n\nTo see coverage, run: 'open coverage/index.html'\n\n\"",
        "cov:html": "nyc report --reporter=html",
        "cov:send": "nyc report --reporter=lcov && codecov",
        "cov:check": "nyc report && nyc check-coverage --lines 0 --functions 0 --branches 0",
        "prepare": "yarn build"
    },
    "dependencies": {
        "@ethersproject/abi": "5.7.0",
        "@ethersproject/bytes": "5.7.0",
        "@ethersproject/providers": "5.7.2",
        "@renproject/utils": "^3.5.2",
        "@types/elliptic": "6.4.14",
        "bignumber.js": "9.0.2",
        "elliptic": "6.5.4",
        "ethers": "5.7.2"
    },
    "nyc": {
        "extends": "@istanbuljs/nyc-config-typescript",
        "exclude": [
            "**/*.d.ts",
            "**/*.spec.js"
        ],
        "include": [
            "src"
        ]
    },
    "prettier": {
        "printWidth": 80,
        "semi": true,
        "singleQuote": false,
        "tabWidth": 4,
        "trailingComma": "all",
        "endOfLine": "lf",
        "arrowParens": "always"
    },
    "gitHead": "30f9648499e372f0a7fede8e1b386c607377b06b"
}
