-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
69 lines (69 loc) · 1.89 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
{
"name": "ipfs-pubsub-room",
"version": "2.0.2",
"description": "IPFS pub-sub room",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "aegir test",
"test:node": "aegir test -t node --cov",
"test:browser": "aegir test -t browser",
"test:webworker": "aegir test -t webworker",
"build": "aegir build",
"lint": "aegir lint",
"release": "aegir release",
"release-minor": "aegir release --type minor",
"release-major": "aegir release --type major",
"dep-check": "aegir dep-check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs-shipyard/ipfs-pubsub-room.git"
},
"keywords": [
"ipfs",
"pubsub",
"p2p",
"room",
"broadcast"
],
"author": "Pedro Teixeira <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ipfs-shipyard/ipfs-pubsub-room/issues"
},
"homepage": "https://github.com/ipfs-shipyard/ipfs-pubsub-room#readme",
"dependencies": {
"hyperdiff": "^2.0.5",
"it-pipe": "^2.0.3",
"lodash.clonedeep": "^4.5.0",
"uint8arrays": "^3.0.0"
},
"devDependencies": {
"@chainsafe/libp2p-gossipsub": "^2.0.0",
"@libp2p/floodsub": "^1.0.6",
"@libp2p/mplex": "^1.1.0",
"@libp2p/websockets": "^1.0.7",
"@multiformats/multiaddr": "^10.2.0",
"aegir": "^37.3.0",
"delay": "^5.0.0",
"libp2p": "^0.37.3"
},
"contributors": [
"Alex Potsides <[email protected]>",
"CHEVALAY JOSSELIN <[email protected]>",
"David Dias <[email protected]>",
"Eric Olszewski <[email protected]>",
"Gorka <[email protected]>",
"Henrique Dias <[email protected]>",
"Pedro Teixeira <[email protected]>",
"haad <[email protected]>",
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <[email protected]>"
],
"eslintConfig": {
"extends": "ipfs",
"parserOptions": {
"sourceType": "module"
}
}
}