js-libp2p-tcp/package.json

76 lines
2.3 KiB
JSON
Raw Normal View History

2015-09-15 19:08:53 +01:00
{
"name": "libp2p-tcp",
2019-12-20 09:02:37 -08:00
"version": "0.14.3",
"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>",
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",
"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",
"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": [
"lint"
],
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": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
2015-09-15 19:08:53 +01:00
},
"devDependencies": {
"aegir": "^21.0.2",
2019-04-26 16:44:28 +01:00
"chai": "^4.2.0",
2017-07-22 14:40:25 -07:00
"dirty-chai": "^2.0.1",
"libp2p-interfaces": "^0.2.0",
"it-pipe": "^1.1.0",
"sinon": "^8.1.1",
"streaming-iterables": "^4.1.1"
2015-09-16 12:35:18 +01:00
},
"dependencies": {
"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",
"err-code": "^2.0.0",
"libp2p-utils": "~0.1.0",
"mafmt": "^7.0.0",
"multiaddr": "^7.2.1",
"stream-to-it": "^0.2.0"
2016-05-09 10:55:15 +01:00
},
"contributors": [
2019-09-16 17:27:15 +02:00
"Alan Shaw <alan.shaw@protocol.ai>",
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>",
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>",
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>",
2018-07-31 14:13:10 +02:00
"Jacob Heun <jacobheun@gmail.com>",
"Jacob Heun <jake@andyet.net>",
2016-05-09 10:55:15 +01:00
"João Antunes <j.goncalo.antunes@gmail.com>",
2019-08-08 13:27:01 +02:00
"Linus Unnebäck <linus@folkdatorn.se>",
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>",
2018-07-31 14:13:10 +02:00
"Stephen Whitmore <stephen.whitmore@gmail.com>",
2019-08-08 13:27:01 +02:00
"TomCoded <tomtinkerer@gmail.com>",
"Vasco Santos <vasco.santos@moxy.studio>"
2016-05-09 10:55:15 +01:00
]
}