{
  "name": "streamr-network",
  "version": "36.0.0",
  "description": "Minimal and extendable implementation of the Streamr Network network node.",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/streamr-dev/network-monorepo.git",
    "directory": "packages/network"
  },
  "license": "STREAMR NETWORK OPEN SOURCE LICENSE",
  "author": "Streamr Network AG <contact@streamr.network>",
  "main": "dist/src/composition.js",
  "browser": "dist/streamr-network.js",
  "types": "dist/src/composition.d.ts",
  "bin": {
    "network": "bin/network.js",
    "publisher": "bin/publisher.js",
    "subscriber": "bin/subscriber.js",
    "tracker": "bin/tracker.js"
  },
  "scripts": {
    "build": "tsc -b tsconfig.node.json",
    "build-browser": "webpack --mode=development --progress",
    "check": "tsc -p ./tsconfig.jest.json --noEmit",
    "clean": "jest --clearCache || true; rm -rf dist *.tsbuildinfo node_modules/.cache || true",
    "coverage": "jest --coverage",
    "eslint": "eslint --cache --cache-location=node_modules/.cache/.eslintcache/ '*/**/*.{js,ts}'",
    "network": "node $NODE_DEBUG_OPTION bin/network.js",
    "prepublishOnly": "npm run clean && NODE_ENV=production tsc -b tsconfig.node.json && NODE_ENV=production webpack --mode=production",
    "pub": "node $NODE_DEBUG_OPTION bin/publisher.js",
    "pub-1": "node $NODE_DEBUG_OPTION bin/publisher.js --port=30323",
    "pub-2": "node $NODE_DEBUG_OPTION bin/publisher.js --port=30333",
    "sub": "node $NODE_DEBUG_OPTION bin/subscriber.js",
    "sub-1": "node $NODE_DEBUG_OPTION bin/subscriber.js --port=30335",
    "sub-2": "node $NODE_DEBUG_OPTION bin/subscriber.js --port=30345",
    "test": "jest",
    "test-browser": "npm run build-browser && karma start karma.config.js",
    "test-flakey": "jest test/flakey",
    "test-integration": "jest test/integration/",
    "test-simulator": "jest --projects simulator.jest.config.js -- test/",
    "test-unit": "jest test/unit",
    "tracker": "node $NODE_DEBUG_OPTION bin/tracker.js"
  },
  "dependencies": {
    "@streamr/utils": "^1.0.0",
    "cancelable-promise": "^3.2.3",
    "commander": "^8.3.0",
    "heap": "^0.2.6",
    "ipaddr.js": "^2.0.1",
    "lodash": "^4.17.21",
    "node-datachannel": "^0.3.4",
    "setimmediate": "^1.0.5",
    "streamr-client-protocol": "^13.0.0",
    "strict-event-emitter-types": "^2.0.0",
    "uuid": "^8.3.2",
    "websocket": "^1.0.34",
    "ws": "^7.5.0",
    "yallist": "^4.0.0"
  },
  "devDependencies": {
    "@jest/fake-timers": "^27.0.5",
    "@streamr/network-tracker": "1.0.0",
    "@types/heap": "^0.2.28",
    "@types/lodash": "^4.14.175",
    "@types/node": "^16.10.6",
    "@types/uuid": "^8.3.1",
    "@types/websocket": "^1.0.3",
    "@types/ws": "^7.4.5",
    "@types/yallist": "^4.0.1",
    "browserify-fs": "^1.0.0",
    "electron": "^20.0.3",
    "electron-rebuild": "^3.2.9",
    "expect": "^28.1.3",
    "express": "^4.17.1",
    "jest-mock": "^28.1.3",
    "karma": "^6.4.0",
    "karma-chrome-launcher": "^3.1.1",
    "karma-electron": "^7.3.0",
    "karma-jasmine": "^5.1.0",
    "karma-spec-reporter": "^0.0.34",
    "karma-webpack": "^5.0.0",
    "node-polyfill-webpack-plugin": "^1.1.4",
    "streamr-test-utils": "^2.0.0",
    "ts-loader": "^9.3.1",
    "webpack": "^5.64.1",
    "webpack-cli": "^4.9.1"
  },
  "optionalDependencies": {
    "bufferutil": "^4.0.5",
    "utf-8-validate": "^5.0.7"
  }
}
