js-libp2p-tcp/package.json

69 lines
2.0 KiB
JSON
Raw Normal View History

2015-09-15 19:08:53 +01:00
{
"name": "libp2p-tcp",
2018-01-12 12:30:45 +00:00
"version": "0.11.2",
"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-01-12 12:30:38 +00:00
"test": "aegir test --t node",
"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
},
"pre-commit": [
"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": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
2015-09-15 19:08:53 +01:00
},
"devDependencies": {
"aegir": "^12.3.0",
"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",
2016-08-05 14:22:18 +02:00
"lodash.isfunction": "^3.0.8",
"pre-commit": "^1.2.2",
2017-10-13 17:15:36 +02:00
"pull-stream": "^3.6.1"
2015-09-16 12:35:18 +01:00
},
"dependencies": {
"debug": "^3.1.0",
2017-03-21 14:27:16 +00:00
"interface-connection": "~0.3.2",
"ip-address": "^5.8.9",
"lodash.includes": "^4.3.0",
2017-02-09 09:00:58 -08:00
"lodash.isfunction": "^3.0.8",
"mafmt": "^3.0.2",
"multiaddr": "^3.0.2",
"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>",
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
]
}