-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
57 lines (57 loc) · 1.26 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
{
"name": "webrtc-explorer",
"version": "2.0.0-alpha-v0",
"description": "P2P Network Routing Overlay designed for the Web platform (browsers) ",
"main": "src/explorer/index.js",
"bin": {
"sig-server": "src/sig-server/bin.js"
},
"scripts": {
"lint": "standard",
"test": "npm run test:sig-server && npm run test:explorer",
"test:explorer": "mocha tests/explorer/index.js",
"test:sig-server": "mocha tests/sig-server/index.js",
"sig-server": "node src/sig-server"
},
"standard": {
"ignore": [
"examples/bundle.js"
]
},
"precommit": [
"lint",
"test"
],
"keywords": [
"routing",
"webrtc",
"chord",
"peer",
"p2p",
"thesis",
"cloud",
"distributed",
"hashring"
],
"repository": {
"type": "git",
"url": "https://github.com/diasdavid/webrtc-explorer"
},
"author": "David Dias <[email protected]>",
"license": "MIT",
"dependencies": {
"debug": "^2.2.0",
"hapi": "^13.0.0",
"simple-peer": "^6.0.1",
"socket.io": "^1.4.5",
"socket.io-client": "^1.4.5",
"webrtc-explorer-peer-id": "^1.1.0"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^2.4.5",
"piri-piri": "^0.4.0",
"pre-commit": "^1.1.2",
"standard": "^6.0.5"
}
}