2015-08-25 11:00:19 +01:00
|
|
|
{
|
|
|
|
"name": "libp2p",
|
2019-04-16 12:40:41 +02:00
|
|
|
"version": "0.25.1",
|
2017-07-06 14:26:20 +01:00
|
|
|
"description": "JavaScript base class for libp2p bundles",
|
2018-07-27 15:59:52 +02:00
|
|
|
"leadMaintainer": "Jacob Heun <jacobheun@gmail.com>",
|
2016-11-25 20:08:05 +00:00
|
|
|
"main": "src/index.js",
|
2018-11-15 18:58:40 +01:00
|
|
|
"files": [
|
|
|
|
"dist",
|
|
|
|
"src"
|
|
|
|
],
|
2015-08-25 11:00:19 +01:00
|
|
|
"scripts": {
|
2017-10-26 04:51:36 -07:00
|
|
|
"lint": "aegir lint",
|
|
|
|
"build": "aegir build",
|
2017-11-12 10:49:46 +00:00
|
|
|
"test": "aegir test -t node -t browser",
|
|
|
|
"test:node": "aegir test -t node",
|
|
|
|
"test:browser": "aegir test -t browser",
|
|
|
|
"release": "aegir release -t node -t browser",
|
|
|
|
"release-minor": "aegir release --type minor -t node -t browser",
|
2019-02-14 17:07:13 +00:00
|
|
|
"release-major": "aegir release --type major -t node -t browser"
|
2015-08-25 11:00:19 +01:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2016-11-25 20:08:05 +00:00
|
|
|
"url": "https://github.com/libp2p/js-libp2p.git"
|
2015-08-25 11:00:19 +01:00
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"IPFS"
|
|
|
|
],
|
2015-09-20 16:19:13 +01:00
|
|
|
"engines": {
|
2017-09-03 14:39:55 +01:00
|
|
|
"node": ">=6.0.0",
|
2016-11-25 20:08:05 +00:00
|
|
|
"npm": ">=3.0.0"
|
2015-09-20 16:19:13 +01:00
|
|
|
},
|
2015-08-25 11:00:19 +01:00
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
2016-11-25 20:08:05 +00:00
|
|
|
"url": "https://github.com/libp2p/js-libp2p/issues"
|
2015-08-25 11:00:19 +01:00
|
|
|
},
|
2017-02-09 10:16:51 -08:00
|
|
|
"homepage": "https://github.com/libp2p/js-libp2p",
|
2018-06-28 10:06:25 +02:00
|
|
|
"browser": {
|
2018-07-19 15:53:18 +02:00
|
|
|
"./test/utils/bundle-nodejs": "./test/utils/bundle-browser"
|
2018-06-28 10:06:25 +02:00
|
|
|
},
|
2017-07-20 10:20:10 -07:00
|
|
|
"dependencies": {
|
2019-03-21 14:23:00 +01:00
|
|
|
"async": "^2.6.2",
|
|
|
|
"debug": "^4.1.1",
|
2018-10-19 16:28:28 +02:00
|
|
|
"err-code": "^1.1.2",
|
2018-10-19 17:37:34 +02:00
|
|
|
"fsm-event": "^2.1.0",
|
2019-04-11 13:49:31 +02:00
|
|
|
"libp2p-connection-manager": "~0.1.0",
|
2019-03-21 14:23:00 +01:00
|
|
|
"libp2p-floodsub": "~0.15.8",
|
2019-02-21 16:07:35 +00:00
|
|
|
"libp2p-ping": "~0.8.5",
|
2019-04-11 13:49:31 +02:00
|
|
|
"libp2p-switch": "~0.42.9",
|
2019-03-21 14:23:00 +01:00
|
|
|
"libp2p-websockets": "~0.12.2",
|
|
|
|
"mafmt": "^6.0.7",
|
|
|
|
"multiaddr": "^6.0.6",
|
2019-02-01 16:32:34 +01:00
|
|
|
"once": "^1.4.0",
|
2019-02-21 16:07:35 +00:00
|
|
|
"peer-book": "~0.9.1",
|
|
|
|
"peer-id": "~0.12.2",
|
|
|
|
"peer-info": "~0.15.1",
|
|
|
|
"superstruct": "~0.6.0"
|
2017-07-20 10:20:10 -07:00
|
|
|
},
|
2015-08-25 11:00:19 +01:00
|
|
|
"devDependencies": {
|
2018-06-28 10:06:25 +02:00
|
|
|
"@nodeutils/defaults-deep": "^1.1.0",
|
2019-03-21 14:23:00 +01:00
|
|
|
"aegir": "^18.2.1",
|
2018-11-06 22:52:16 +01:00
|
|
|
"chai": "^4.2.0",
|
2018-10-19 17:37:34 +02:00
|
|
|
"chai-checkmark": "^1.0.1",
|
2019-03-21 14:23:00 +01:00
|
|
|
"cids": "~0.5.8",
|
2017-10-26 04:51:36 -07:00
|
|
|
"dirty-chai": "^2.0.1",
|
2017-10-26 12:56:14 +01:00
|
|
|
"electron-webrtc": "~0.3.0",
|
2018-10-31 11:48:02 +00:00
|
|
|
"interface-datastore": "~0.6.0",
|
2019-03-21 14:23:00 +01:00
|
|
|
"libp2p-bootstrap": "~0.9.7",
|
|
|
|
"libp2p-circuit": "~0.3.6",
|
2018-10-19 16:28:28 +02:00
|
|
|
"libp2p-delegated-content-routing": "~0.2.2",
|
|
|
|
"libp2p-delegated-peer-routing": "~0.2.2",
|
2019-03-21 14:23:00 +01:00
|
|
|
"libp2p-kad-dht": "~0.14.8",
|
|
|
|
"libp2p-mdns": "~0.12.2",
|
2018-11-15 14:01:30 +01:00
|
|
|
"libp2p-mplex": "~0.8.4",
|
2019-03-21 14:23:00 +01:00
|
|
|
"libp2p-secio": "~0.11.1",
|
|
|
|
"libp2p-spdy": "~0.13.2",
|
2018-09-24 16:18:37 +02:00
|
|
|
"libp2p-tcp": "~0.13.0",
|
2019-03-21 14:23:00 +01:00
|
|
|
"libp2p-webrtc-star": "~0.15.8",
|
|
|
|
"libp2p-websocket-star": "~0.10.2",
|
2019-01-04 16:41:09 +00:00
|
|
|
"libp2p-websocket-star-rendezvous": "~0.3.0",
|
2017-07-04 11:43:45 +01:00
|
|
|
"lodash.times": "^4.3.2",
|
2019-03-21 14:23:00 +01:00
|
|
|
"nock": "^10.0.6",
|
2017-07-04 11:43:45 +01:00
|
|
|
"pull-goodbye": "0.0.2",
|
2019-03-21 14:23:00 +01:00
|
|
|
"pull-mplex": "~0.1.2",
|
2017-10-26 12:56:14 +01:00
|
|
|
"pull-serializer": "~0.3.2",
|
2018-09-24 16:18:37 +02:00
|
|
|
"pull-stream": "^3.6.9",
|
2019-03-21 14:23:00 +01:00
|
|
|
"sinon": "^7.2.7",
|
|
|
|
"wrtc": "~0.3.5"
|
2016-11-26 03:07:52 +01:00
|
|
|
},
|
2016-11-27 18:41:13 +00:00
|
|
|
"contributors": [
|
2019-03-21 14:27:35 +01:00
|
|
|
"Aditya Bose <13054902+adbose@users.noreply.github.com>",
|
2019-01-04 10:15:48 -07:00
|
|
|
"Alan Shaw <alan.shaw@protocol.ai>",
|
2018-06-29 23:27:28 +01:00
|
|
|
"Alan Shaw <alan@tableflip.io>",
|
2019-03-21 14:27:35 +01:00
|
|
|
"Andrew Nesbitt <andrewnez@gmail.com>",
|
2017-07-21 10:26:12 -07:00
|
|
|
"Chris Bratlien <chrisbratlien@gmail.com>",
|
2018-02-07 08:39:08 +00:00
|
|
|
"Chris Dostert <chrisdostert@users.noreply.github.com>",
|
2017-10-26 13:02:16 +01:00
|
|
|
"Daijiro Wachi <daijiro.wachi@gmail.com>",
|
2016-11-27 18:41:13 +00:00
|
|
|
"David Dias <daviddias.p@gmail.com>",
|
2018-04-06 17:03:47 +01:00
|
|
|
"Diogo Silva <fsdiogo@gmail.com>",
|
2017-10-26 13:02:16 +01:00
|
|
|
"Dmitriy Ryajov <dryajov@gmail.com>",
|
2017-09-03 14:43:34 +01:00
|
|
|
"Elven <mon.samuel@qq.com>",
|
2018-04-30 22:41:32 +01:00
|
|
|
"Florian-Merle <florian.david.merle@gmail.com>",
|
2016-11-27 18:41:13 +00:00
|
|
|
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
|
2018-01-07 17:09:56 +00:00
|
|
|
"Giovanni T. Parra <fiatjaf@gmail.com>",
|
2018-11-16 14:12:01 +01:00
|
|
|
"Henrique Dias <hacdias@gmail.com>",
|
2019-02-21 17:46:09 +01:00
|
|
|
"Hugo Dias <mail@hugodias.me>",
|
2018-06-28 10:34:11 +02:00
|
|
|
"Hugo Dias <hugomrdias@gmail.com>",
|
2018-01-16 06:16:15 -08:00
|
|
|
"Irakli Gozalishvili <rfobic@gmail.com>",
|
2018-06-29 23:27:28 +01:00
|
|
|
"Jacob Heun <jacobheun@gmail.com>",
|
2017-12-14 07:39:37 +00:00
|
|
|
"Joel Gustafson <joelg@mit.edu>",
|
2018-01-07 17:09:56 +00:00
|
|
|
"John Rees <johnrees@users.noreply.github.com>",
|
2018-06-28 10:34:11 +02:00
|
|
|
"João Santos <joaosantos15@users.noreply.github.com>",
|
2018-01-16 06:16:15 -08:00
|
|
|
"Kevin Kwok <antimatter15@gmail.com>",
|
2017-10-26 13:02:16 +01:00
|
|
|
"Lars Gierth <lgierth@users.noreply.github.com>",
|
2017-11-27 09:13:12 +00:00
|
|
|
"Maciej Krüger <mkg20001@gmail.com>",
|
2018-12-03 12:56:50 +01:00
|
|
|
"Marcin Tojek <mtojek@users.noreply.github.com>",
|
2017-10-26 13:02:16 +01:00
|
|
|
"Nuno Nogueira <nunofmn@gmail.com>",
|
2018-06-28 10:34:11 +02:00
|
|
|
"Pedro Teixeira <pedro@protocol.ai>",
|
2017-07-07 13:27:04 +01:00
|
|
|
"Pedro Teixeira <i@pgte.me>",
|
2017-09-03 14:43:34 +01:00
|
|
|
"RasmusErik Voel Jensen <github@solsort.com>",
|
2016-11-27 18:41:13 +00:00
|
|
|
"Richard Littauer <richard.littauer@gmail.com>",
|
2017-10-26 13:02:16 +01:00
|
|
|
"Ryan Bell <ryan@piing.net>",
|
2019-02-05 13:56:50 +01:00
|
|
|
"Soeren <nikorpoulsen@gmail.com>",
|
2018-03-28 15:33:59 -07:00
|
|
|
"Sönke Hahn <soenkehahn@gmail.com>",
|
2019-02-05 13:56:50 +01:00
|
|
|
"Thomas Eizinger <thomas@eizinger.io>",
|
2018-01-07 17:09:56 +00:00
|
|
|
"Tiago Alves <alvesjtiago@gmail.com>",
|
2019-02-21 17:46:09 +01:00
|
|
|
"Vasco Santos <vasco.santos@ua.pt>",
|
2019-02-26 15:24:55 +01:00
|
|
|
"Vasco Santos <vasco.santos@moxy.studio>",
|
2018-06-28 10:34:11 +02:00
|
|
|
"Volker Mische <volker.mische@gmail.com>",
|
2019-04-11 13:54:39 +02:00
|
|
|
"Yusef Napora <yusef@napora.org>",
|
2018-03-15 08:16:12 -07:00
|
|
|
"Zane Starr <zcstarr@gmail.com>",
|
2019-02-05 13:56:50 +01:00
|
|
|
"ebinks <elizabethjbinks@gmail.com>",
|
2017-01-28 21:14:26 +00:00
|
|
|
"greenkeeperio-bot <support@greenkeeper.io>",
|
2019-02-21 17:46:09 +01:00
|
|
|
"isan_rivkin <isanrivkin@gmail.com>",
|
2017-11-27 09:13:12 +00:00
|
|
|
"mayerwin <mayerwin@users.noreply.github.com>",
|
|
|
|
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <victorbjelkholm@gmail.com>"
|
2016-11-27 18:41:13 +00:00
|
|
|
]
|
2017-09-10 04:52:07 +01:00
|
|
|
}
|