-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
60 lines (60 loc) · 1.33 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
{
"name": "webdht",
"version": "0.0.1",
"description": "A DHT that runs in the browser",
"main": "index.js",
"scripts": {
"test": "tape test/*.js",
"coverage": "istanbul cover test/*.js",
"start": "browserify index.js > static/bundle.js && node index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/jhiesey/webdht.git"
},
"keywords": [
"web",
"dht",
"webrtc",
"distributed",
"hash",
"table"
],
"author": "John Hiesey",
"license": "MIT",
"bugs": {
"url": "https://github.com/jhiesey/webdht/issues"
},
"homepage": "https://github.com/jhiesey/webdht#readme",
"dependencies": {
"async": "^2.6.0",
"browserify": "^15.2.0",
"dezalgo": "^1.0.3",
"duplexify": "^3.4.2",
"express": "^4.13.3",
"hat": "0.0.3",
"inherits": "^2.0.1",
"movable-stream": "^0.0.1",
"multiplex": "^6.2.2",
"multistream": "^2.0.2",
"once": "^1.3.2",
"pump": "^2.0.1",
"rpc-stream": "^2.1.1",
"simple-peer": "^8.2.0",
"simple-websocket": "^5.1.0",
"through2": "^2.0.0",
"websocket-stream": "^5.1.1"
},
"devDependencies": {
"ashify": "^1.0.1",
"istanbul": "^0.4.5",
"proxyquire": "^1.7.3",
"tape": "^4.2.1"
},
"optionalDependencies": {
"wrtc": "0.0.65"
},
"browser": {
"wrtc": false
}
}