This repository was archived by the owner on Apr 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
81 lines (81 loc) · 2.4 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
{
"name": "libp2p-ipfs-nodejs",
"version": "301.0.0",
"description": "The libp2p build (module) used by js-ipfs on Node.js",
"main": "src/index.js",
"scripts": {
"test": "npm run test:muxer:both",
"test:muxer:spdy": "LIBP2P_MUXER=spdy aegir-test node",
"test:muxer:multiplex": "LIBP2P_MUXER=multiplex aegir-test node",
"test:muxer:both": "LIBP2P_MUXER=\"spdy, multiplex\" aegir-test node",
"lint": "aegir-lint",
"release": "aegir-release node",
"release-minor": "aegir-release node --type minor",
"release-major": "aegir-release node --type major",
"coverage": "aegir-coverage",
"coverage-publish": "aegir-coverage publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-libp2p-ipfs-nodejs.git"
},
"pre-commit": [
"lint",
"test"
],
"keywords": [
"IPFS"
],
"author": "David Dias <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs/js-libp2p-ipfs-nodejs/issues"
},
"engines": {
"node": ">=4.0.0",
"npm": ">=3.0.0"
},
"homepage": "https://github.com/ipfs/js-libp2p-ipfs-nodejs#readme",
"devDependencies": {
"aegir": "^11.0.2",
"async": "^2.5.0",
"chai": "^4.0.2",
"cids": "^0.5.0",
"dirty-chai": "^2.0.0",
"electron-webrtc": "^0.3.0",
"lodash.times": "^4.3.2",
"pre-commit": "^1.2.2",
"pull-stream": "^3.6.0",
"wrtc": "0.0.63"
},
"dependencies": {
"libp2p": "~0.9.1",
"libp2p-kad-dht": "~0.1.0",
"libp2p-mdns": "~0.7.0",
"libp2p-multiplex": "~0.4.3",
"libp2p-railing": "~0.5.1",
"libp2p-secio": "~0.6.8",
"libp2p-spdy": "~0.10.6",
"libp2p-swarm": "~0.29.1",
"libp2p-tcp": "~0.10.1",
"libp2p-webrtc-star": "~0.11.0",
"libp2p-websockets": "~0.10.0",
"mafmt": "^2.1.8",
"multiaddr": "^2.3.0",
"peer-book": "~0.4.0",
"peer-id": "~0.8.7",
"peer-info": "~0.9.2"
},
"contributors": [
"David Dias <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"JGAntunes <[email protected]>",
"Prashanth Chandra <[email protected]>",
"Richard Littauer <[email protected]>",
"Stephen Whitmore <[email protected]>",
"Victor Bjelkholm <[email protected]>",
"greenkeeperio-bot <[email protected]>",
"kumavis <[email protected]>",
"varunagarwal315 <[email protected]>"
]
}