forked from ipfs-shipyard/ipfs-pubsub-room
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
{
"name": "ipfs-pubsub-room",
"version": "1.4.0",
"description": "IPFS pub-sub room",
"main": "src/index.js",
"scripts": {
"lint": "aegir lint",
"test": "aegir test",
"test:node": "aegir test -t node",
"test:browser": "aegir test - browser"
},
"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",
"lodash.clonedeep": "^4.5.0",
"pull-pushable": "^2.2.0",
"pull-stream": "^3.6.8"
},
"devDependencies": {
"async": "^2.6.1",
"chai": "^4.1.2",
"dirty-chai": "^2.0.1",
"aegir": "^15.0.0",
"ipfs": "~0.32.0"
},
"browser": {
"./test/utils/create-repo-node.js": "./test/utils/create-repo-browser.js"
}
}