-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.07 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
{
"name": "p2p-port-mapping",
"version": "0.1.7",
"description": "mapping local server port to another machine across NAT, using webrtc data channel.",
"main": "index.js",
"type": "module",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yuanzhanghu/p2p-port-mapping.git"
},
"keywords": [
"p2p",
"mapping",
"webrtc",
"data",
"channel"
],
"author": "Yuanzhang Hu",
"license": "MIT",
"bugs": {
"url": "https://github.com/yuanzhanghu/p2p-port-mapping/issues"
},
"homepage": "https://github.com/yuanzhanghu/p2p-port-mapping#readme",
"dependencies": {
"commander": "^6.1.0",
"debug": "^4.1.1",
"jayson": "^3.3.4",
"node-datachannel": "^0.5.0",
"socket.io-client": "^4.7.2",
"winston": "^3.2.1",
"yargs": "^17.7.2"
},
"optionalDependencies": {
"node-linux": "yuanzhanghu/node-linux",
"node-windows": "^1.0.0-beta.5"
},
"devDependencies": {
"jest": "^24.9.0",
"pkg": "^4.4.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
}
}