-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.47 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "ipfs-bitswap",
"version": "1.0.0",
"description": "Node.js implementation of the Bitswap data exchange protocol used by IPFS",
"leadMaintainer": "Dirk McCormick <dirk@protocol.ai>",
"main": "src/index.js",
"browser": {
"./test/utils/create-libp2p-node": false,
"./test/utils/create-temp-repo-nodejs.js": "./test/utils/create-temp-repo-browser.js"
},
"files": [
"dist",
"src"
],
"scripts": {
"test": "aegir test",
"test:browser": "aegir test -t browser -t webworker",
"test:node": "aegir test -t node",
"lint": "aegir lint",
"release": "aegir release",
"release-minor": "aegir release --type minor",
"release-major": "aegir release --type major",
"bench": "node benchmarks/index",
"build": "aegir build",
"coverage": "aegir coverage --provider codecov",
"docs": "aegir docs",
"benchmarks": "node test/benchmarks/get-many"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-ipfs-bitswap.git"
},
"keywords": [
"ipfs",
"libp2p",
"p2p",
"exchange"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs/js-ipfs-bitswap/issues"
},
"homepage": "https://github.com/ipfs/js-ipfs-bitswap#readme",
"devDependencies": {
"@nodeutils/defaults-deep": "^1.1.0",
"aegir": "^22.0.0",
"benchmark": "^2.1.4",
"buffer": "^5.6.0",
"delay": "^4.3.0",
"ipfs-repo": "^3.0.1",
"ipfs-utils": "^2.2.0",
"iso-random-stream": "^1.1.1",
"it-all": "^1.0.2",
"it-drain": "^1.0.1",
"libp2p": "^0.28.0-rc.0",
"libp2p-kad-dht": "^0.19.1",
"libp2p-mplex": "^0.9.2",
"libp2p-secio": "^0.12.1",
"libp2p-tcp": "^0.14.2",
"lodash.difference": "^4.5.0",
"lodash.flatten": "^4.4.0",
"lodash.range": "^3.2.0",
"lodash.without": "^4.4.0",
"ncp": "^2.0.0",
"p-defer": "^3.0.0",
"p-event": "^4.1.0",
"p-wait-for": "^3.1.0",
"peer-id": "^0.13.5",
"promisify-es6": "^1.0.3",
"rimraf": "^3.0.0",
"sinon": "^9.0.0",
"stats-lite": "^2.2.0",
"uuid": "^8.0.0"
},
"dependencies": {
"abort-controller": "^3.0.0",
"any-signal": "^1.1.0",
"bignumber.js": "^9.0.0",
"cids": "~0.8.0",
"debug": "^4.1.0",
"ipld-block": "^0.9.1",
"it-length-prefixed": "^3.0.0",
"it-pipe": "^1.1.0",
"just-debounce-it": "^1.1.0",
"moving-average": "^1.0.0",
"multicodec": "^1.0.0",
"multihashing-async": "^0.8.0",
"protons": "^1.0.1",
"streaming-iterables": "^4.1.1",
"varint-decoder": "^0.4.0"
},
"pre-push": [
"lint"
],
"contributors": [
"David Dias <daviddias.p@gmail.com>",
"Friedel Ziegelmayer <dignifiedquire@gmail.com>",
"Dirk McCormick <dirkmdev@gmail.com>",
"Volker Mische <volker.mische@gmail.com>",
"Jacob Heun <jacobheun@gmail.com>",
"Pedro Teixeira <i@pgte.me>",
"Alex Potsides <alex@achingbrain.net>",
"Hugo Dias <hugomrdias@gmail.com>",
"Michael Garvin <gar+gh@danger.computer>",
"Hector Sanjuan <code@hector.link>",
"Alan Shaw <alan.shaw@protocol.ai>",
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <victorbjelkholm@gmail.com>",
"Richard Schneider <makaretu@gmail.com>",
"Stephen Whitmore <stephen.whitmore@gmail.com>",
"Maciej Krüger <mkg20001@gmail.com>",
"Henrique Dias <hacdias@gmail.com>",
"dmitriy ryajov <dryajov@dmitriys-MBP.HomeNET>",
"Dmitriy Ryajov <dryajov@gmail.com>",
"Bryan Stenson <bryan.stenson@gmail.com>",
"Richard Littauer <richard.littauer@gmail.com>"
]
}