-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
94 lines (94 loc) · 2.88 KB
/
package.json
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
{
"name": "paratii-protocol",
"version": "0.0.1",
"description": "Based on IPFS bitswap, Node.js implementation of the Paratii data exchange protocol used by paratii under IPFS",
"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"
},
"scripts": {
"test": "aegir test --target node --target browser",
"test:browser": "aegir test --target browser",
"test:node": "aegir test --target 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 -u",
"docs": "aegir docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-ipfs-bitswap.git"
},
"keywords": [
"ipfs",
"libp2p",
"p2p",
"exchange"
],
"author": "Friedel Ziegelmayer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs/js-ipfs-bitswap/issues"
},
"homepage": "https://github.com/ipfs/js-ipfs-bitswap#readme",
"devDependencies": {
"aegir": "^12.0.6",
"benchmark": "^2.1.4",
"chai": "^4.1.2",
"dirty-chai": "^2.0.1",
"ipfs-repo": "~0.17.0",
"libp2p": "~0.12.3",
"libp2p-kad-dht": "~0.5.0",
"libp2p-multiplex": "~0.5.0",
"libp2p-secio": "~0.8.1",
"libp2p-tcp": "~0.11.0",
"lodash": "^4.17.4",
"multiaddr": "^3.0.1",
"ncp": "^2.0.0",
"peer-book": "~0.5.0",
"peer-id": "~0.10.0",
"peer-info": "~0.11.0",
"rimraf": "^2.6.1",
"safe-buffer": "^5.1.1"
},
"dependencies": {
"async": "^2.5.0",
"cids": "~0.5.1",
"debug": "^3.0.1",
"ipfs-block": "~0.6.0",
"lodash.debounce": "^4.0.8",
"lodash.find": "^4.6.0",
"lodash.groupby": "^4.6.0",
"lodash.isequalwith": "^4.4.0",
"lodash.isundefined": "^3.0.1",
"lodash.pullallwith": "^4.7.0",
"lodash.sortby": "^4.7.0",
"lodash.uniqwith": "^4.5.0",
"lodash.values": "^4.3.0",
"multihashing-async": "~0.4.6",
"protons": "^1.0.0",
"pull-defer": "^0.2.2",
"pull-length-prefixed": "^1.3.0",
"pull-pushable": "^2.1.1",
"pull-stream": "^3.6.0",
"safe-buffer": "^5.1.1",
"varint-decoder": "^0.1.1"
},
"contributors": [
"David Dias <[email protected]>",
"Dmitriy Ryajov <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"Pedro Teixeira <[email protected]>",
"Richard Littauer <[email protected]>",
"Stephen Whitmore <[email protected]>",
"dmitriy ryajov <[email protected]>",
"greenkeeper[bot] <greenkeeper[bot]@users.noreply.github.com>",
"greenkeeperio-bot <[email protected]>",
"npmcdn-to-unpkg-bot <[email protected]>"
]
}