{
  "name": "@confio/relayer",
  "version": "0.12.0",
  "description": "IBC Relayer in TypeScript",
  "repository": "https://github.com/confio/ts-relayer",
  "license": "MIT",
  "keywords": [],
  "browserslist": [
    "maintained node versions"
  ],
  "main": "build/index.js",
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "fix": "run-s fix:*",
    "fix:prettier": "prettier \"**/*.{ts,md}\" --write",
    "fix:lint": "eslint src --ext .ts --fix",
    "test": "run-s build test:*",
    "test:lint": "eslint src --ext .ts",
    "test:prettier": "prettier \"**/*.{ts,md}\" --list-different",
    "test:unit": "nyc --silent ava --serial",
    "focused-test": "yarn test:unit ./src/cw20/cosmwasm.spec.ts",
    "watch:build": "tsc -p tsconfig.json -w",
    "watch:test": "nyc --silent ava --watch --serial",
    "cov": "run-s build test:unit cov:html cov:lcov && echo 'Coverage report written to coverage/index.html'",
    "cov:html": "nyc report --reporter=html",
    "cov:lcov": "nyc report --reporter=lcov",
    "cov:send": "run-s cov:lcov && codecov",
    "cov:check": "nyc report && nyc check-coverage --lines 100 --functions 100 --branches 100",
    "proto": "./scripts/proto/get-proto.sh && ./scripts/proto/define-proto.sh && yarn fix"
  },
  "engines": {
    "node": ">=18"
  },
  "dependencies": {
    "@cosmjs/cosmwasm-stargate": "^0.32.1",
    "@cosmjs/crypto": "^0.32.1",
    "@cosmjs/encoding": "^0.32.1",
    "@cosmjs/faucet-client": "^0.32.1",
    "@cosmjs/math": "^0.32.1",
    "@cosmjs/proto-signing": "^0.32.1",
    "@cosmjs/stargate": "^0.32.1",
    "@cosmjs/stream": "^0.32.1",
    "@cosmjs/tendermint-rpc": "^0.32.1",
    "@cosmjs/utils": "^0.32.1",
    "ajv": "7.1.1",
    "axios": "^1.6.7",
    "commander": "7.1.0",
    "cosmjs-types": "^0.9.0",
    "fast-safe-stringify": "2.0.4",
    "js-yaml": "4.0.0",
    "prom-client": "13.1.0",
    "table": "^6.7.1",
    "triple-beam": "1.3.0",
    "winston": "3.3.3"
  },
  "devDependencies": {
    "@ava/typescript": "^3",
    "@changesets/cli": "^2.16.0",
    "@istanbuljs/nyc-config-typescript": "^1.0.1",
    "@types/js-yaml": "^4.0.0",
    "@types/node": "^18",
    "@types/sinon": "^9.0.10",
    "@types/triple-beam": "^1.3.2",
    "@typescript-eslint/eslint-plugin": "^5",
    "@typescript-eslint/parser": "^5",
    "ava": "^4",
    "codecov": "^3.5.0",
    "eslint": "^7.8.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-eslint-comments": "^3.2.0",
    "eslint-plugin-functional": "^3.0.2",
    "eslint-plugin-import": "^2.22.0",
    "npm-run-all": "^4.1.5",
    "nyc": "^15.1.0",
    "prettier": "^3.2.5",
    "sinon": "^9.2.4",
    "ts-node": "^9.0.0",
    "typescript": "^4.8"
  },
  "files": [
    "build/**/*.js",
    "build/**/*.d.ts",
    "!build/**/*.spec.js",
    "!build/**/*.spec.d.ts",
    "!build/lib/testutils.js",
    "!build/lib/testutils.d.ts",
    "LICENSE",
    "CHANGELOG.md",
    "README.md"
  ],
  "ava": {
    "failFast": true,
    "timeout": "120s",
    "typescript": {
      "rewritePaths": {
        "src/": "build/"
      },
      "compile": false
    }
  },
  "nyc": {
    "extends": "@istanbuljs/nyc-config-typescript",
    "exclude": [
      "**/*.spec.js"
    ]
  },
  "bin": {
    "ibc-setup": "build/binary/ibc-setup/index.js",
    "ibc-relayer": "build/binary/ibc-relayer/index.js"
  }
}
