{
  "name": "ilp-protocol-stream",
  "version": "2.7.2-alpha.3",
  "description": "Interledger Transport Protocol for sending multiple streams of money and data over ILP.",
  "main": "dist/src/index.js",
  "browser": {
    "./dist/src/util/crypto-node.js": "./dist/src/util/crypto-browser.js",
    "./src/util/crypto-node.ts": "./src/util/crypto-browser.ts",
    "./dist/src/pool.js": false,
    "./src/pool.ts": false,
    "./dist/src/server.js": false,
    "./src/server.ts": false
  },
  "types": "dist/src/index.d.ts",
  "files": [
    "dist/src/**/*.js",
    "dist/src/**/*.js.map",
    "dist/src/**/*.d.ts"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "clean": "rimraf .nyc_output/* dist/* coverage/*",
    "build": "tsc -p tsconfig.build.json",
    "test": "mocha --exit --require ts-node/register/transpile-only --ui mocha-typescript --require source-map-support/register --watch-extensions ts test/*.spec.ts test/**/*.spec.ts",
    "cover": "nyc --extension .ts --reporter=json --reporter=html --require ts-node/register/transpile-only --ui mocha-typescript --require source-map-support/register mocha --exit test/*.spec.ts test/**/*.spec.ts",
    "doc": "typedoc --options typedoc.js src/index.ts src/connection.ts src/stream.ts --theme node_modules/typedoc-neo-theme/bin/default",
    "codecov": "curl -s https://codecov.io/bash | bash -s - -s coverage -F ilp_protocol_stream"
  },
  "keywords": [
    "interledger",
    "ilp",
    "streaming",
    "payments",
    "micropayments",
    "chunked"
  ],
  "author": "Evan Schwartz <evan@ripple.com>",
  "license": "Apache-2.0",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/interledgerjs/interledgerjs.git"
  },
  "dependencies": {
    "ilp-logger": "^1.4.5-alpha.2",
    "ilp-packet": "^3.1.4-alpha.2",
    "ilp-protocol-ildcp": "^2.2.4-alpha.2",
    "long": "^4.0.0",
    "oer-utils": "^5.1.3-alpha.2",
    "uuid": "^8.3.2"
  },
  "devDependencies": {
    "@types/benchmark": "2.1.2",
    "@types/long": "4.0.2",
    "@types/uuid": "8.3.4",
    "@types/webpack": "5.28.1",
    "assert": "2.0.0",
    "benchmark": "2.1.4",
    "bignumber.js": "9.1.1",
    "buffer": "6.0.3",
    "events": "3.3.0",
    "ilp-plugin": "3.5.5-alpha.2",
    "ilp-plugin-btp": "1.5.0",
    "ilp-plugin-mini-accounts": "4.2.0",
    "process": "0.11.10",
    "puppeteer": "20.4.0",
    "stream-browserify": "3.0.0",
    "ts-loader": "9.4.3",
    "typedoc": "0.24.6",
    "typedoc-neo-theme": "1.1.1",
    "util": "0.12.5",
    "webpack": "5.84.1",
    "webpack-cli": "5.0.2"
  },
  "nyc": {
    "check-coverage": true,
    "lines": 80,
    "statements": 80,
    "functions": 80,
    "branches": 80,
    "reporter": [
      "lcov",
      "text-summary"
    ]
  }
}
