2015-09-15 19:08:53 +01:00
{
"name" : "libp2p-tcp" ,
2018-02-20 10:27:27 +00:00
"version" : "0.11.6" ,
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" ,
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" ,
2018-02-07 05:45:30 +00:00
"test" : "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" ,
2017-10-13 17:15:36 +02:00
"coverage" : "aegir coverage" ,
"coverage-publish" : "aegir coverage --provider coveralls"
2015-09-15 19:08:53 +01:00
} ,
2018-02-07 05:45:30 +00:00
"pre-push" : [
2016-03-04 18:58:01 +00:00
"lint" ,
"test"
] ,
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"
] ,
"author" : "David Dias <daviddias@ipfs.io>" ,
"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" : {
2018-02-20 10:27:17 +00:00
"aegir" : "^13.0.5" ,
2017-09-03 10:01:16 +01:00
"chai" : "^4.1.2" ,
2017-07-22 14:40:25 -07:00
"dirty-chai" : "^2.0.1" ,
2017-03-21 14:27:16 +00:00
"interface-transport" : "~0.3.5" ,
2018-02-07 05:45:30 +00:00
"lodash.isfunction" : "^3.0.9" ,
2016-12-18 12:37:15 +01:00
"pre-commit" : "^1.2.2" ,
2018-02-20 10:27:17 +00:00
"pull-stream" : "^3.6.2"
2015-09-16 12:35:18 +01:00
} ,
"dependencies" : {
2018-04-02 18:57:59 +01:00
"class-is" : "^1.0.0" ,
2018-01-12 12:01:54 +00:00
"debug" : "^3.1.0" ,
2017-03-21 14:27:16 +00:00
"interface-connection" : "~0.3.2" ,
2018-01-12 12:27:39 +00:00
"ip-address" : "^5.8.9" ,
2016-12-04 20:28:18 +08:00
"lodash.includes" : "^4.3.0" ,
2018-02-07 05:45:30 +00:00
"lodash.isfunction" : "^3.0.9" ,
2018-02-20 10:27:17 +00:00
"mafmt" : "^4.0.0" ,
2018-01-12 12:27:39 +00:00
"multiaddr" : "^3.0.2" ,
2017-03-27 17:18:55 +02:00
"once" : "^1.4.0" ,
2017-02-09 08:33:48 -08:00
"stream-to-pull-stream" : "^1.7.2"
2016-05-09 10:55:15 +01:00
} ,
"contributors" : [
2018-01-12 12:30:45 +00:00
"Alan Shaw <alan@tableflip.io>" ,
2016-05-09 10:55:15 +01:00
"David Dias <daviddias.p@gmail.com>" ,
2017-10-13 17:17:16 +02:00
"Dmitriy Ryajov <dryajov@gmail.com>" ,
2016-09-06 08:52:42 -04:00
"Evan Schwartz <evan.mark.schwartz@gmail.com>" ,
2016-11-03 08:23:38 +00:00
"Friedel Ziegelmayer <dignifiedquire@gmail.com>" ,
2017-02-09 08:34:54 -08:00
"Greenkeeper <support@greenkeeper.io>" ,
2016-05-09 10:55:15 +01:00
"João Antunes <j.goncalo.antunes@gmail.com>" ,
2018-02-07 05:45:42 +00:00
"Pedro Teixeira <i@pgte.me>" ,
2017-02-09 08:34:54 -08:00
"Prashanth Chandra <coolshanth94@gmail.com>" ,
2016-05-09 10:55:15 +01:00
"Richard Littauer <richard.littauer@gmail.com>" ,
2017-02-09 08:34:54 -08:00
"Stephen Whitmore <stephen.whitmore@gmail.com>"
2016-05-09 10:55:15 +01:00
]
2017-10-13 08:13:28 -07:00
}