2015-09-15 19:08:53 +01:00
{
"name" : "libp2p-tcp" ,
2021-02-03 13:06:32 +01:00
"version" : "0.15.3" ,
2016-03-04 18:58:01 +00:00
"description" : "Node.js implementation of the TCP module that libp2p uses, which implements the interface-connection and interface-transport interfaces" ,
2018-06-26 17:58:30 +02:00
"leadMaintainer" : "Jacob Heun <jacobheun@gmail.com>" ,
2016-11-03 09:22:32 +01:00
"main" : "src/index.js" ,
2015-09-15 19:08:53 +01:00
"scripts" : {
2017-10-13 17:15:36 +02:00
"lint" : "aegir lint" ,
2019-08-08 12:48:13 +02:00
"test" : "aegir test -t node" ,
"test:node" : "aegir test -t node" ,
2018-01-12 12:30:38 +00:00
"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" ,
2019-09-16 16:19:47 +01:00
"coverage" : "nyc --reporter=text --reporter=lcov npm run test:node"
2015-09-15 19:08:53 +01:00
} ,
2018-02-07 05:45:30 +00:00
"pre-push" : [
2019-09-16 16:19:47 +01:00
"lint"
2016-03-04 18:58:01 +00:00
] ,
2015-09-15 19:08:53 +01:00
"repository" : {
"type" : "git" ,
2016-11-03 09:22:32 +01:00
"url" : "https://github.com/libp2p/js-libp2p-tcp.git"
2015-09-15 19:08:53 +01:00
} ,
"keywords" : [
"IPFS"
] ,
"license" : "MIT" ,
"bugs" : {
2016-11-03 09:22:32 +01:00
"url" : "https://github.com/libp2p/js-libp2p-tcp/issues"
} ,
"homepage" : "https://github.com/libp2p/js-libp2p-tcp" ,
"engines" : {
2017-09-03 10:01:16 +01:00
"node" : ">=6.0.0" ,
"npm" : ">=3.0.0"
2015-09-15 19:08:53 +01:00
} ,
"devDependencies" : {
2020-07-17 12:34:55 +02:00
"aegir" : "^25.0.0" ,
2019-12-06 09:42:43 +01:00
"it-pipe" : "^1.1.0" ,
2021-04-09 22:59:13 +03:00
"libp2p-interfaces" : "fluencelabs/js-libp2p-interfaces" ,
2020-02-19 12:31:49 +00:00
"sinon" : "^9.0.0" ,
2020-07-17 12:34:55 +02:00
"streaming-iterables" : "^5.0.2"
2015-09-16 12:35:18 +01:00
} ,
"dependencies" : {
2019-12-06 09:42:43 +01:00
"abortable-iterator" : "^3.0.0" ,
2018-04-05 16:56:23 +01:00
"class-is" : "^1.1.0" ,
2019-04-26 16:44:28 +01:00
"debug" : "^4.1.1" ,
2019-09-16 16:19:47 +01:00
"err-code" : "^2.0.0" ,
2021-04-09 22:59:13 +03:00
"libp2p-utils" : "fluencelabs/js-libp2p-utils" ,
"mafmt" : "fluencelabs/js-mafmt" ,
2021-04-09 17:59:25 +03:00
"multiaddr" : "^9.0.1" ,
2020-07-17 12:34:55 +02:00
"stream-to-it" : "^0.2.2"
2016-05-09 10:55:15 +01:00
} ,
"contributors" : [
"David Dias <daviddias.p@gmail.com>" ,
2020-02-24 18:22:48 +01:00
"Jacob Heun <jacobheun@gmail.com>" ,
"Stephen Whitmore <stephen.whitmore@gmail.com>" ,
"Friedel Ziegelmayer <dignifiedquire@gmail.com>" ,
2020-08-11 15:35:36 +02:00
"Vasco Santos <vasco.santos@moxy.studio>" ,
2021-02-03 13:06:32 +01:00
"Alex Potsides <alex@achingbrain.net>" ,
2020-02-24 18:22:48 +01:00
"Richard Littauer <richard.littauer@gmail.com>" ,
"Tom White <tomtinkerer@gmail.com>" ,
"Alan Shaw <alan@tableflip.io>" ,
2021-02-03 13:06:32 +01:00
"Pedro Teixeira <i@pgte.me>" ,
2020-12-28 09:54:14 +00:00
"Prashanth Chandra <coolshanth94@gmail.com>" ,
2020-02-24 18:22:48 +01:00
"João Antunes <j.goncalo.antunes@gmail.com>" ,
2021-02-03 13:06:32 +01:00
"Cayman <caymannava@gmail.com>" ,
2018-04-05 17:00:33 +01:00
"Diogo Silva <fsdiogo@gmail.com>" ,
2017-10-13 17:17:16 +02:00
"Dmitriy Ryajov <dryajov@gmail.com>" ,
2018-04-05 17:00:33 +01:00
"Drew Stone <drewstone329@gmail.com>" ,
2016-09-06 08:52:42 -04:00
"Evan Schwartz <evan.mark.schwartz@gmail.com>" ,
2020-08-07 18:09:06 +02:00
"Linus Unnebäck <linus@folkdatorn.se>" ,
2021-02-03 13:06:32 +01:00
"Mikeal Rogers <mikeal.rogers@gmail.com>"
2016-05-09 10:55:15 +01:00
]
2017-10-13 08:13:28 -07:00
}