mirror of
https://github.com/fluencelabs/js-libp2p-tcp
synced 2025-06-24 01:31:33 +00:00
62 lines
1.8 KiB
JSON
62 lines
1.8 KiB
JSON
{
|
|
"name": "libp2p-tcp",
|
|
"version": "0.9.1",
|
|
"description": "Node.js implementation of the TCP module that libp2p uses, which implements the interface-connection and interface-transport interfaces",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"lint": "aegir-lint",
|
|
"test": "aegir-test --env node",
|
|
"docs": "aegir-docs",
|
|
"release": "aegir-release --env no-build --docs",
|
|
"release-minor": "aegir-release --type minor --env no-build --docs",
|
|
"release-major": "aegir-release --type major --env no-build --docs",
|
|
"coverage": "aegir-coverage",
|
|
"coverage-publish": "aegir-coverage publish"
|
|
},
|
|
"pre-commit": [
|
|
"lint",
|
|
"test"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/libp2p/js-libp2p-tcp.git"
|
|
},
|
|
"keywords": [
|
|
"IPFS"
|
|
],
|
|
"author": "David Dias <daviddias@ipfs.io>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/libp2p/js-libp2p-tcp/issues"
|
|
},
|
|
"homepage": "https://github.com/libp2p/js-libp2p-tcp",
|
|
"engines": {
|
|
"node": ">=4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"aegir": "^9.2.0",
|
|
"chai": "^3.5.0",
|
|
"interface-transport": "^0.3.3",
|
|
"lodash.isfunction": "^3.0.8",
|
|
"pre-commit": "^1.1.3",
|
|
"pull-stream": "^3.5.0"
|
|
},
|
|
"dependencies": {
|
|
"interface-connection": "0.3.0",
|
|
"ip-address": "^5.8.2",
|
|
"lodash.includes": "^4.3.0",
|
|
"mafmt": "^2.1.2",
|
|
"multiaddr": "^2.1.1",
|
|
"stream-to-pull-stream": "^1.7.2"
|
|
},
|
|
"contributors": [
|
|
"David Dias <daviddias.p@gmail.com>",
|
|
"Evan Schwartz <evan.mark.schwartz@gmail.com>",
|
|
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
|
|
"João Antunes <j.goncalo.antunes@gmail.com>",
|
|
"Richard Littauer <richard.littauer@gmail.com>",
|
|
"Stephen Whitmore <stephen.whitmore@gmail.com>",
|
|
"greenkeeperio-bot <support@greenkeeper.io>"
|
|
]
|
|
}
|