UNPKG

libp2p-tcp

Version:

Node.js implementation of the TCP module that libp2p uses, which implements the interface-connection and interface-transport interfaces

85 lines (84 loc) 2.63 kB
{ "name": "libp2p-tcp", "version": "0.17.2", "description": "Node.js implementation of the TCP module that libp2p uses, which implements the interface-connection and interface-transport interfaces", "leadMaintainer": "Jacob Heun <jacobheun@gmail.com>", "main": "src/index.js", "scripts": { "lint": "aegir ts -p check && aegir lint", "build": "aegir build", "test": "aegir test -t node", "test:node": "aegir test -t node", "release": "aegir release -t node", "release-minor": "aegir release -t node --type minor", "release-major": "aegir-release -t node --type major", "coverage": "nyc --reporter=text --reporter=lcov npm run test:node" }, "pre-push": [ "lint" ], "repository": { "type": "git", "url": "https://github.com/libp2p/js-libp2p-tcp.git" }, "keywords": [ "libp2p", "network", "p2p", "peer", "peer-to-peer", "IPFS", "TCP" ], "license": "MIT", "bugs": { "url": "https://github.com/libp2p/js-libp2p-tcp/issues" }, "homepage": "https://github.com/libp2p/js-libp2p-tcp", "engines": { "node": ">=14.0.0" }, "types": "dist/src/index.d.ts", "devDependencies": { "@types/debug": "^4.1.5", "aegir": "^35.0.3", "it-pipe": "^1.1.0", "libp2p-interfaces": "^1.0.0", "libp2p-interfaces-compliance-tests": "^1.0.0", "sinon": "^11.1.1", "streaming-iterables": "^6.0.0" }, "dependencies": { "abortable-iterator": "^3.0.0", "class-is": "^1.1.0", "debug": "^4.3.1", "err-code": "^3.0.1", "libp2p-utils": "^0.4.0", "mafmt": "^10.0.0", "multiaddr": "^10.0.0", "stream-to-it": "^0.2.2" }, "contributors": [ "David Dias <daviddias.p@gmail.com>", "Jacob Heun <jacobheun@gmail.com>", "Vasco Santos <vasco.santos@moxy.studio>", "Stephen Whitmore <stephen.whitmore@gmail.com>", "Friedel Ziegelmayer <dignifiedquire@gmail.com>", "Alex Potsides <alex@achingbrain.net>", "Richard Littauer <richard.littauer@gmail.com>", "Tom White <tomtinkerer@gmail.com>", "Alan Shaw <alan@tableflip.io>", "Nazar Hussain <nazarhussain@gmail.com>", "Pedro Teixeira <i@pgte.me>", "Prashanth Chandra <coolshanth94@gmail.com>", "Ryan Mehta <ryan.mehta@gmail.com>", "Linus Unnebäck <linus@folkdatorn.se>", "Cayman <caymannava@gmail.com>", "Diogo Silva <fsdiogo@gmail.com>", "Dmitriy Ryajov <dryajov@gmail.com>", "Drew Stone <drewstone329@gmail.com>", "Evan Schwartz <evan.mark.schwartz@gmail.com>", "João Antunes <j.goncalo.antunes@gmail.com>", "Mikeal Rogers <mikeal.rogers@gmail.com>" ] }