2015-08-25 11:00:19 +01:00
{
"name" : "libp2p" ,
2021-04-30 15:45:44 +02:00
"version" : "0.31.2" ,
2019-06-12 14:18:34 +02:00
"description" : "JavaScript implementation of libp2p, a modular peer to peer network stack" ,
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" ,
2020-12-10 14:48:14 +01:00
"types" : "dist/src/index.d.ts" ,
"typesVersions" : {
"*" : {
"src/*" : [
"dist/src/*" ,
"dist/src/*/index"
]
}
} ,
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" ,
2021-04-15 09:40:02 +02:00
"build:proto" : "npm run build:proto:circuit && npm run build:proto:identify && npm run build:proto:plaintext && npm run build:proto:address-book && npm run build:proto:proto-book && npm run build:proto:peer-record && npm run build:proto:envelope" ,
2021-04-20 16:25:48 +02:00
"build:proto:circuit" : "pbjs -t static-module -w commonjs -r libp2p-circuit --force-number --no-verify --no-delimited --no-create --no-beautify --no-defaults --lint eslint-disable -o src/circuit/protocol/index.js ./src/circuit/protocol/index.proto" ,
"build:proto:identify" : "pbjs -t static-module -w commonjs -r libp2p-identify --force-number --no-verify --no-delimited --no-create --no-beautify --no-defaults --lint eslint-disable -o src/identify/message.js ./src/identify/message.proto" ,
"build:proto:plaintext" : "pbjs -t static-module -w commonjs -r libp2p-plaintext --force-number --no-verify --no-delimited --no-create --no-beautify --no-defaults --lint eslint-disable -o src/insecure/proto.js ./src/insecure/proto.proto" ,
"build:proto:address-book" : "pbjs -t static-module -w commonjs -r libp2p-address-book --force-number --no-verify --no-delimited --no-create --no-beautify --no-defaults --lint eslint-disable -o src/peer-store/persistent/pb/address-book.js ./src/peer-store/persistent/pb/address-book.proto" ,
"build:proto:proto-book" : "pbjs -t static-module -w commonjs -r libp2p-proto-book --force-number --no-verify --no-delimited --no-create --no-beautify --no-defaults --lint eslint-disable -o src/peer-store/persistent/pb/proto-book.js ./src/peer-store/persistent/pb/proto-book.proto" ,
"build:proto:peer-record" : "pbjs -t static-module -w commonjs -r libp2p-peer-record --force-number --no-verify --no-delimited --no-create --no-beautify --no-defaults --lint eslint-disable -o src/record/peer-record/peer-record.js ./src/record/peer-record/peer-record.proto" ,
"build:proto:envelope" : "pbjs -t static-module -w commonjs -r libp2p-envelope --force-number --no-verify --no-delimited --no-create --no-beautify --no-defaults --lint eslint-disable -o src/record/envelope/envelope.js ./src/record/envelope/envelope.proto" ,
2021-04-15 09:40:02 +02:00
"build:proto-types" : "npm run build:proto-types:circuit && npm run build:proto-types:identify && npm run build:proto-types:plaintext && npm run build:proto-types:address-book && npm run build:proto-types:proto-book && npm run build:proto-types:peer-record && npm run build:proto-types:envelope" ,
"build:proto-types:circuit" : "pbts -o src/circuit/protocol/index.d.ts src/circuit/protocol/index.js" ,
"build:proto-types:identify" : "pbts -o src/identify/message.d.ts src/identify/message.js" ,
"build:proto-types:plaintext" : "pbts -o src/insecure/proto.d.ts src/insecure/proto.js" ,
"build:proto-types:address-book" : "pbts -o src/peer-store/persistent/pb/address-book.d.ts src/peer-store/persistent/pb/address-book.js" ,
"build:proto-types:proto-book" : "pbts -o src/peer-store/persistent/pb/proto-book.d.ts src/peer-store/persistent/pb/proto-book.js" ,
"build:proto-types:peer-record" : "pbts -o src/record/peer-record/peer-record.d.ts src/record/peer-record/peer-record.js" ,
"build:proto-types:envelope" : "pbts -o src/record/envelope/envelope.d.ts src/record/envelope/envelope.js" ,
"test" : "aegir test" ,
"test:ts" : "aegir build --no-bundle && npm run test --prefix test/ts-use" ,
2019-12-06 14:28:52 +01:00
"test:node" : "aegir test -t node -f \"./test/**/*.{node,spec}.js\"" ,
2017-11-12 10:49:46 +00:00
"test:browser" : "aegir test -t browser" ,
2020-11-20 15:18:15 +01:00
"test:examples" : "cd examples && npm run test:all" ,
2021-04-15 09:40:02 +02:00
"prepare" : "aegir build --no-bundle" ,
2017-11-12 10:49:46 +00:00
"release" : "aegir release -t node -t browser" ,
"release-minor" : "aegir release --type minor -t node -t browser" ,
2019-08-16 17:30:03 +02:00
"release-major" : "aegir release --type major -t node -t browser" ,
"coverage" : "nyc --reporter=text --reporter=lcov npm run test:node"
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" : [
2019-06-12 14:18:34 +02:00
"libp2p" ,
"network" ,
"p2p" ,
"peer" ,
"peer-to-peer" ,
2015-08-25 11:00:19 +01:00
"IPFS"
] ,
"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
} ,
2019-06-12 14:18:34 +02:00
"homepage" : "https://libp2p.io" ,
"license" : "MIT" ,
"engines" : {
2021-04-15 09:40:02 +02:00
"node" : ">=14.0.0"
2019-06-12 14:18:34 +02:00
} ,
2021-01-27 13:55:26 +00:00
"browser" : {
"@motrix/nat-api" : false
} ,
2021-04-15 09:40:02 +02:00
"eslintConfig" : {
"extends" : "ipfs" ,
"ignorePatterns" : [
"!.aegir.js" ,
"test/ts-use"
]
} ,
2017-07-20 10:20:10 -07:00
"dependencies" : {
2021-01-27 13:55:26 +00:00
"@motrix/nat-api" : "^0.3.1" ,
2019-10-21 16:53:58 +02:00
"abort-controller" : "^3.0.0" ,
2021-01-27 09:45:31 +01:00
"aggregate-error" : "^3.1.0" ,
"any-signal" : "^2.1.1" ,
"bignumber.js" : "^9.0.1" ,
"cids" : "^1.1.5" ,
2019-08-08 19:01:16 +02:00
"class-is" : "^1.1.0" ,
2021-01-27 09:45:31 +01:00
"debug" : "^4.3.1" ,
2021-04-15 09:40:02 +02:00
"err-code" : "^3.0.0" ,
2021-03-09 10:55:38 -05:00
"es6-promisify" : "^6.1.1" ,
2021-04-15 09:40:02 +02:00
"events" : "^3.3.0" ,
2019-08-08 19:01:16 +02:00
"hashlru" : "^2.3.0" ,
2021-04-20 16:11:23 +01:00
"interface-datastore" : "^4.0.0" ,
2021-01-27 09:45:31 +01:00
"ipfs-utils" : "^6.0.0" ,
"it-all" : "^1.0.4" ,
2020-04-24 16:10:40 +01:00
"it-buffer" : "^0.1.2" ,
2021-01-21 12:41:27 +00:00
"it-drain" : "^1.0.3" ,
"it-filter" : "^1.0.1" ,
"it-first" : "^1.0.4" ,
2021-04-15 09:40:02 +02:00
"it-handshake" : "^2.0.0" ,
"it-length-prefixed" : "^5.0.2" ,
2021-01-21 12:41:27 +00:00
"it-map" : "^1.0.4" ,
"it-merge" : "1.0.0" ,
2019-11-13 16:38:07 +01:00
"it-pipe" : "^1.1.0" ,
2021-01-21 12:41:27 +00:00
"it-take" : "1.0.0" ,
2021-04-30 09:30:41 +02:00
"libp2p-crypto" : "^0.19.4" ,
2021-04-30 13:20:12 +02:00
"libp2p-interfaces" : "^0.10.4" ,
2021-04-15 09:40:02 +02:00
"libp2p-utils" : "^0.3.1" ,
"mafmt" : "^9.0.0" ,
2021-01-27 09:45:31 +01:00
"merge-options" : "^3.0.4" ,
2021-04-30 13:20:12 +02:00
"@vascosantos/moving-average" : "^1.1.0" ,
2021-04-15 09:40:02 +02:00
"multiaddr" : "^9.0.1" ,
"multicodec" : "^3.0.1" ,
"multihashing-async" : "^2.1.2" ,
"multistream-select" : "^2.0.0" ,
2019-12-11 16:05:59 +01:00
"mutable-proxy" : "^1.0.0" ,
2021-01-27 09:45:31 +01:00
"node-forge" : "^0.10.0" ,
2020-02-26 11:23:26 +01:00
"p-any" : "^3.0.0" ,
2019-12-04 16:27:33 +01:00
"p-fifo" : "^1.0.0" ,
2021-04-15 09:40:02 +02:00
"p-retry" : "^4.4.0" ,
"p-settle" : "^4.1.1" ,
2020-10-07 14:50:01 +02:00
"peer-id" : "^0.14.2" ,
2021-04-15 09:40:02 +02:00
"private-ip" : "^2.1.0" ,
"protobufjs" : "^6.10.2" ,
"retimer" : "^3.0.0" ,
2020-05-12 14:09:31 +02:00
"sanitize-filename" : "^1.6.3" ,
2020-11-25 18:50:23 +01:00
"set-delayed-interval" : "^1.0.0" ,
2020-08-24 11:58:02 +01:00
"streaming-iterables" : "^5.0.2" ,
"timeout-abort-controller" : "^1.1.1" ,
2021-01-27 09:45:31 +01:00
"varint" : "^6.0.0" ,
2021-04-15 09:40:02 +02:00
"xsalsa20" : "^1.1.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" ,
2021-03-26 17:13:07 +00:00
"@types/es6-promisify" : "^6.0.0" ,
2021-04-15 09:40:02 +02:00
"@types/node-forge" : "^0.9.7" ,
"@types/varint" : "^6.0.0" ,
2020-02-04 12:43:10 +00:00
"abortable-iterator" : "^3.0.0" ,
2021-04-27 17:13:34 +02:00
"aegir" : "^33.1.1" ,
2021-04-15 09:40:02 +02:00
"buffer" : "^6.0.3" ,
"delay" : "^5.0.0" ,
2020-08-27 15:22:52 +02:00
"interop-libp2p" : "^0.3.0" ,
2020-11-25 18:50:23 +01:00
"into-stream" : "^6.0.0" ,
2021-04-15 09:40:02 +02:00
"ipfs-http-client" : "^49.0.4" ,
2019-12-11 16:05:59 +01:00
"it-concat" : "^1.0.0" ,
2019-10-21 16:53:58 +02:00
"it-pair" : "^1.0.0" ,
2019-12-11 16:05:59 +01:00
"it-pushable" : "^1.4.0" ,
2020-08-25 16:48:04 +02:00
"libp2p" : "." ,
2021-04-15 09:40:02 +02:00
"libp2p-bootstrap" : "^0.12.3" ,
"libp2p-delegated-content-routing" : "^0.10.0" ,
"libp2p-delegated-peer-routing" : "^0.9.0" ,
"libp2p-floodsub" : "^0.25.0" ,
2021-04-29 10:10:57 +02:00
"libp2p-gossipsub" : "^0.9.0" ,
"libp2p-kad-dht" : "^0.22.0" ,
2021-04-15 09:40:02 +02:00
"libp2p-mdns" : "^0.16.0" ,
2020-10-22 13:24:15 +02:00
"libp2p-mplex" : "^0.10.1" ,
2021-04-27 13:24:31 +02:00
"libp2p-noise" : "^3.0.0" ,
2021-04-30 09:30:41 +02:00
"libp2p-tcp" : "^0.15.4" ,
"libp2p-webrtc-star" : "^0.22.2" ,
"libp2p-websockets" : "^0.15.6" ,
2021-04-15 09:40:02 +02:00
"multihashes" : "^4.0.2" ,
2020-08-24 11:58:02 +01:00
"nock" : "^13.0.3" ,
2019-10-21 16:53:58 +02:00
"p-defer" : "^3.0.0" ,
2020-04-28 13:16:41 +02:00
"p-times" : "^3.0.0" ,
2021-01-27 09:45:31 +01:00
"p-wait-for" : "^3.2.0" ,
2020-05-12 14:09:31 +02:00
"rimraf" : "^3.0.2" ,
2021-04-15 09:40:02 +02:00
"sinon" : "^10.0.0" ,
"uint8arrays" : "^2.1.3" ,
"util" : "^0.12.3"
2016-11-26 03:07:52 +01:00
} ,
2016-11-27 18:41:13 +00:00
"contributors" : [
2020-03-31 13:47:41 +02:00
"David Dias <daviddias.p@gmail.com>" ,
"Vasco Santos <vasco.santos@moxy.studio>" ,
2021-04-21 15:01:31 +02:00
"Jacob Heun <jacobheun@gmail.com>" ,
2020-08-05 19:07:07 +02:00
"Alex Potsides <alex@achingbrain.net>" ,
2021-04-16 17:12:57 +02:00
"Alan Shaw <alan@tableflip.io>" ,
2020-08-25 16:59:41 +02:00
"Cayman <caymannava@gmail.com>" ,
2020-03-31 13:47:41 +02:00
"Pedro Teixeira <i@pgte.me>" ,
"Friedel Ziegelmayer <dignifiedquire@gmail.com>" ,
2020-05-28 12:52:24 +02:00
"Maciej Krüger <mkg20001@gmail.com>" ,
2020-04-24 17:38:32 +02:00
"Hugo Dias <mail@hugodias.me>" ,
2021-03-09 18:52:37 +01:00
"dirkmc <dirkmdev@gmail.com>" ,
2021-04-21 15:01:31 +02:00
"Volker Mische <volker.mische@gmail.com>" ,
2020-03-31 13:47:41 +02:00
"Richard Littauer <richard.littauer@gmail.com>" ,
2020-12-09 16:42:20 +01:00
"a1300 <matthias-knopp@gmx.net>" ,
2021-01-28 16:50:46 +01:00
"Elven <mon.samuel@qq.com>" ,
2020-08-05 19:07:07 +02:00
"Giovanni T. Parra <fiatjaf@gmail.com>" ,
2021-04-21 15:01:31 +02:00
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <victorbjelkholm@gmail.com>" ,
2020-08-05 19:07:07 +02:00
"Thomas Eizinger <thomas@eizinger.io>" ,
2021-03-09 18:52:37 +01:00
"Samlior <samlior@foxmail.com>" ,
2021-04-21 15:01:31 +02:00
"Ryan Bell <ryan@piing.net>" ,
"Andrew Nesbitt <andrewnez@gmail.com>" ,
"Didrik Nordström <didrik.nordstrom@gmail.com>" ,
2020-07-10 17:26:21 +02:00
"Nuno Nogueira <nunofmn@gmail.com>" ,
2021-03-09 18:52:37 +01:00
"Philipp Muens <raute1337@gmx.de>" ,
2020-12-09 16:42:20 +01:00
"Smite Chow <xiaopengyou@live.com>" ,
2020-07-10 17:26:21 +02:00
"Soeren <nikorpoulsen@gmail.com>" ,
2020-08-05 19:07:07 +02:00
"Sönke Hahn <soenkehahn@gmail.com>" ,
2021-03-09 18:52:37 +01:00
"TJKoury <TJKoury@gmail.com>" ,
2020-08-05 19:07:07 +02:00
"Tiago Alves <alvesjtiago@gmail.com>" ,
"Yusef Napora <yusef@napora.org>" ,
"Zane Starr <zcstarr@gmail.com>" ,
2021-02-25 15:31:26 +01:00
"ebinks <elizabethjbinks@gmail.com>" ,
2021-01-28 16:50:46 +01:00
"isan_rivkin <isanrivkin@gmail.com>" ,
2021-02-25 15:31:26 +01:00
"robertkiel <robert.kiel@validitylabs.org>" ,
2021-04-21 15:01:31 +02:00
"RasmusErik Voel Jensen <github@solsort.com>" ,
2021-03-09 18:52:37 +01:00
"Aleksei <vozhdb@gmail.com>" ,
2021-04-21 15:01:31 +02:00
"Bernd Strehl <bernd.strehl@gmail.com>" ,
"Chris Bratlien <chrisbratlien@gmail.com>" ,
"Cindy Wu <ciindy.wu@gmail.com>" ,
"Daijiro Wachi <daijiro.wachi@gmail.com>" ,
"Diogo Silva <fsdiogo@gmail.com>" ,
"Dmitriy Ryajov <dryajov@gmail.com>" ,
"Ethan Lam <elmemphis2000@gmail.com>" ,
2021-02-25 15:31:26 +01:00
"Fei Liu <liu.feiwood@gmail.com>" ,
2021-01-28 16:50:46 +01:00
"Felipe Martins <felipebrasil93@gmail.com>" ,
2021-02-25 15:31:26 +01:00
"Florian-Merle <florian.david.merle@gmail.com>" ,
"Francis Gulotta <wizard@roborooter.com>" ,
2021-04-21 15:01:31 +02:00
"Franck Royer <franck@royer.one>" ,
2021-02-25 15:31:26 +01:00
"Henrique Dias <hacdias@gmail.com>" ,
"Irakli Gozalishvili <rfobic@gmail.com>" ,
2021-04-21 15:01:31 +02:00
"Joel Gustafson <joelg@mit.edu>" ,
"Julien Bouquillon <contact@revolunet.com>" ,
"Kevin Kwok <antimatter15@gmail.com>" ,
"Kevin Lacker <lacker@gmail.com>" ,
"Miguel Mota <miguelmota2@gmail.com>"
2016-11-27 18:41:13 +00:00
]
2017-09-10 04:52:07 +01:00
}