elbus 0.2.21

Local and network IPC bus
Documentation
{
  "name": "promise-socket",
  "version": "7.0.0",
  "description": "Return promise for socket stream",
  "main": "lib/promise-socket.js",
  "typings": "lib/promise-socket.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/dex4er/js-promise-socket"
  },
  "keywords": [
    "promise",
    "socket",
    "stream"
  ],
  "author": "Piotr Roszatycki",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/dex4er/js-promise-socket/issues"
  },
  "homepage": "http://github.com/dex4er/js-promise-socket",
  "engines": {
    "node": ">=10.0.0"
  },
  "dependencies": {
    "promise-duplex": "^6.0.0",
    "tslib": "^2.0.1"
  },
  "devDependencies": {
    "@types/chai": "^4.2.12",
    "@types/dirty-chai": "^2.0.2",
    "@types/mocha": "^8.0.2",
    "@types/node": "^14.0.27",
    "@types/readline-transform": "^1.0.0",
    "@typescript-eslint/eslint-plugin": "^3.9.0",
    "@typescript-eslint/eslint-plugin-tslint": "^3.9.0",
    "@typescript-eslint/parser": "^3.9.0",
    "chai": "^4.2.0",
    "changelog-parser": "^2.8.0",
    "coveralls": "^3.1.0",
    "cross-env": "^7.0.2",
    "delay": "^4.4.0",
    "dirty-chai": "^2.0.1",
    "eslint": "^7.6.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-import": "^2.22.0",
    "eslint-plugin-jsdoc": "^30.2.1",
    "eslint-plugin-node": "^11.1.0",
    "markdownlint-cli": "^0.23.2",
    "mocha": "^8.1.1",
    "mocha-steps": "^1.3.0",
    "nyc": "^15.1.0",
    "prettier": "^2.0.5",
    "promise-readable": "^6.0.0",
    "promise-writable": "^6.0.0",
    "readline-transform": "^1.0.0",
    "shx": "^0.3.2",
    "source-map-support": "^0.5.19",
    "ts-node": "^8.10.2",
    "typescript": "^3.9.7"
  },
  "scripts": {
    "compile": "tsc --pretty --project .",
    "clean": "npm run clean:compile && npm run clean:coverage",
    "clean:compile": "shx rm -rf lib",
    "clean:coverage": "shx rm -rf coverage .nyc_output",
    "lint": "npm run lint:tsc:src && npm run lint:tsc:test && npm run lint:tsc:examples && npm run lint:eslint && npm run lint:prettier && npm run lint:markdownlint",
    "lint:tsc:examples": "tsc --noEmit --pretty --project examples",
    "lint:tsc:src": "tsc --noEmit --pretty --project .",
    "lint:tsc:test": "tsc --noEmit --pretty --project test",
    "lint:eslint": "eslint --ext .js,.ts .",
    "lint:prettier": "prettier --ignore-path .gitignore --list-different '**/*.{js,json,md,ts,yml}'",
    "lint:markdownlint": "markdownlint \"*.md\"",
    "postpublish": "node -e \"require(\\\"changelog-parser\\\")(\\\"CHANGELOG.md\\\").then(ch => console.log(ch.versions.filter(v => v.version === \\\"$npm_package_version\\\").map(v => \\\"v$npm_package_version\\n\\n\\\" + v.body).concat(\\\"Release v$npm_package_version\\\")[0]))\" | xargs -0 git tag v$npm_package_version -a -m && git push --tags",
    "prepack": "npm run compile",
    "prepublishOnly": "npm run test",
    "pretest": "npm run lint",
    "test": "npm run test:spec",
    "test:spec": "$NYC mocha \"test/*.ts\"",
    "test:coverage": "npm run clean:coverage && cross-env NYC=\"nyc --no-clean --reporter=lcov\" npm run test:spec && nyc report --reporter=text-summary --color"
  }
}