2015-09-15 19:08:53 +01:00
{
"name" : "libp2p-tcp" ,
2016-09-06 09:31:40 -04:00
"version" : "0.8.1" ,
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-09-05 18:13:43 -04:00
"main" : "lib/index.js" ,
2016-05-09 11:14:40 +02:00
"jsnext:main" : "src/index.js" ,
2015-09-15 19:08:53 +01:00
"scripts" : {
2016-05-09 11:14:40 +02:00
"lint" : "aegir-lint" ,
"build" : "aegir-build --env node" ,
"test" : "aegir-test --env node" ,
"release" : "aegir-release --env node" ,
2016-05-22 17:20:58 +01:00
"release-minor" : "aegir-release --type minor --env node" ,
2016-05-22 17:17:25 +01:00
"release-major" : "aegir-release --type major --env node" ,
2016-05-09 11:14:40 +02:00
"coverage" : "aegir-coverage" ,
"coverage-publish" : "aegir-coverage publish"
2015-09-15 19:08:53 +01:00
} ,
2016-03-04 18:58:01 +00:00
"pre-commit" : [
"lint" ,
"test"
] ,
2015-09-15 19:08:53 +01:00
"repository" : {
"type" : "git" ,
2015-10-29 07:27:39 +00:00
"url" : "https://github.com/diasdavid/js-libp2p-tcp.git"
2015-09-15 19:08:53 +01:00
} ,
"keywords" : [
"IPFS"
] ,
"author" : "David Dias <daviddias@ipfs.io>" ,
"license" : "MIT" ,
"bugs" : {
2015-10-29 07:27:39 +00:00
"url" : "https://github.com/diasdavid/js-libp2p-tcp/issues"
2015-09-15 19:08:53 +01:00
} ,
2015-10-29 07:27:39 +00:00
"homepage" : "https://github.com/diasdavid/js-libp2p-tcp" ,
2015-09-15 19:08:53 +01:00
"devDependencies" : {
2016-09-09 01:34:28 +02:00
"aegir" : "^8.0.1" ,
2016-03-04 18:58:01 +00:00
"chai" : "^3.5.0" ,
2016-09-05 18:13:43 -04:00
"interface-transport" : "^0.3.3" ,
2016-08-05 14:22:18 +02:00
"lodash.isfunction" : "^3.0.8" ,
2016-09-09 11:49:11 +02:00
"pre-commit" : "^1.1.2" ,
"pull-stream" : "^3.4.5"
2015-09-16 12:35:18 +01:00
} ,
"dependencies" : {
2016-09-05 18:13:43 -04:00
"interface-connection" : "0.2.1" ,
2016-03-10 10:24:48 +00:00
"ip-address" : "^5.8.0" ,
2016-05-29 08:56:24 +01:00
"lodash.contains" : "^2.4.3" ,
2016-08-22 16:19:30 +02:00
"mafmt" : "^2.1.2" ,
2016-09-08 01:20:22 +02:00
"multiaddr" : "^2.0.3" ,
2016-08-05 14:22:18 +02:00
"stream-to-pull-stream" : "^1.7.0"
2016-05-09 10:55:15 +01:00
} ,
"contributors" : [
"David Dias <daviddias.p@gmail.com>" ,
2016-09-06 08:52:42 -04:00
"Evan Schwartz <evan.mark.schwartz@gmail.com>" ,
2016-05-09 10:55:15 +01:00
"João Antunes <j.goncalo.antunes@gmail.com>" ,
"Richard Littauer <richard.littauer@gmail.com>" ,
2016-06-01 02:15:22 +02:00
"Stephen Whitmore <stephen.whitmore@gmail.com>" ,
2016-09-06 08:52:42 -04:00
"dignifiedquire <dignifiedquire@gmail.com>" ,
"greenkeeperio-bot <support@greenkeeper.io>"
2016-05-09 10:55:15 +01:00
]
2016-09-09 11:49:11 +02:00
}