{
  "name": "@test-org122/test-merchant-connector",
  "version": "0.0.4",
  "description": "An example dispute mediator for testing, which always resolve's in the sender's favor.",
  "license": "ISC",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/GoHypernet/hypernet-protocol.git"
  },
  "bugs": {
    "url": "https://github.com/GoHypernet/hypernet-protocol/issues"
  },
  "homepage": "https://github.com/GoHypernet/hypernet-protocol/tree/master/packages/core#readme",
  "author": "Charlie Sibbach <charlie@hyperdyne.io>",
  "keywords": [
    "Blockchain",
    "Hypernet",
    "SDK",
    "Ethereum",
    "Vector",
    "Connext"
  ],
  "main": "dist/index.js",
  "files": [
    "dist",
    "src",
    "!dist/test",
    "!dist/tsconfig.tsbuildinfo"
  ],
  "scripts": {
    "build": "yarn clean && yarn build-connector && yarn build-server",
    "build-connector": "webpack --config src/webpack.config.js",
    "build-server": "webpack --config server/webpack.config.js",
    "clean": "rimraf dist",
    "format": "prettier --write \"src/**/*.ts\" && prettier --write \"test/**/*.ts\"",
    "generate-docs": "npx typedoc --options typedoc.json",
    "lint": "tslint -p src/tsconfig.json",
    "prepare": "yarn build",
    "start": "compile-connector && ts-node server/index.ts",
    "test": "yarn test:ci",
    "test:ci": "jest --runInBand --coverage --passWithNoTests",
    "test:watch": "jest --watch --color --detectOpenHandles",
    "preversion": "npm run lint",
    "version": "npm run format && git add -A src",
    "postversion": "git push && git push --tags",
    "publish-package": "yarn publish --access public"
  },
  "types": "dist/index.d.ts",
  "dependencies": {
    "@test-org122/merchant-connector": "^0.0.1",
    "cors": "^2.8.5",
    "ethers": "^5.0.31",
    "express": "^4.17.1"
  }
}