mirror of
https://github.com/fluencelabs/js-libp2p-tcp
synced 2025-04-25 03:22:28 +00:00
77 lines
2.3 KiB
JSON
77 lines
2.3 KiB
JSON
{
|
|
"name": "libp2p-tcp",
|
|
"version": "0.13.0",
|
|
"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",
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"scripts": {
|
|
"lint": "aegir lint",
|
|
"test": "aegir test -t node -f test/**/*.js",
|
|
"test:node": "aegir test -t node -f test/**/*.js",
|
|
"release": "aegir release -t node --no-build",
|
|
"release-minor": "aegir release -t node --type minor --no-build",
|
|
"release-major": "aegir-release -t node --type major --no-build",
|
|
"coverage": "aegir coverage",
|
|
"coverage-publish": "aegir coverage --provider coveralls"
|
|
},
|
|
"pre-push": [
|
|
"lint",
|
|
"test"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/libp2p/js-libp2p-tcp.git"
|
|
},
|
|
"keywords": [
|
|
"IPFS"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/libp2p/js-libp2p-tcp/issues"
|
|
},
|
|
"homepage": "https://github.com/libp2p/js-libp2p-tcp",
|
|
"engines": {
|
|
"node": ">=6.0.0",
|
|
"npm": ">=3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"aegir": "^18.2.0",
|
|
"chai": "^4.2.0",
|
|
"dirty-chai": "^2.0.1",
|
|
"interface-transport": "~0.3.7",
|
|
"pull-stream": "^3.6.9"
|
|
},
|
|
"dependencies": {
|
|
"class-is": "^1.1.0",
|
|
"debug": "^4.1.1",
|
|
"interface-connection": "~0.3.3",
|
|
"ip-address": "^5.8.9",
|
|
"mafmt": "^6.0.6",
|
|
"multiaddr": "^6.0.5",
|
|
"once": "^1.4.0",
|
|
"stream-to-pull-stream": "^1.7.2"
|
|
},
|
|
"contributors": [
|
|
"Alan Shaw <alan@tableflip.io>",
|
|
"David Dias <daviddias.p@gmail.com>",
|
|
"Diogo Silva <fsdiogo@gmail.com>",
|
|
"Dmitriy Ryajov <dryajov@gmail.com>",
|
|
"Drew Stone <drewstone329@gmail.com>",
|
|
"Evan Schwartz <evan.mark.schwartz@gmail.com>",
|
|
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
|
|
"Greenkeeper <support@greenkeeper.io>",
|
|
"Jacob Heun <jacobheun@gmail.com>",
|
|
"Jacob Heun <jake@andyet.net>",
|
|
"João Antunes <j.goncalo.antunes@gmail.com>",
|
|
"Pedro Teixeira <i@pgte.me>",
|
|
"Prashanth Chandra <coolshanth94@gmail.com>",
|
|
"Richard Littauer <richard.littauer@gmail.com>",
|
|
"Stephen Whitmore <stephen.whitmore@gmail.com>",
|
|
"TomCoded <tomtinkerer@gmail.com>"
|
|
]
|
|
}
|