-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.06 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.06 KB
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
{
"name": "udp-messaging",
"version": "0.4.0",
"description": "Reliable communication over a udp socket.",
"engines": {
"node": ">=8.9.0"
},
"main": "index.js",
"scripts": {
"coverage": "nyc --reporter=lcov --reporter=text-summary npm run test",
"test": "node test.js | node node_modules/faucet/bin/cmd",
"docs": "node node_modules/jsdoc/jsdoc.js -c jsdoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/walasek/node-udp-messaging.git"
},
"keywords": [
"nodejs",
"udp",
"streaming"
],
"author": "Karol Walasek <coreconviction@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/walasek/node-udp-messaging/issues"
},
"homepage": "https://github.com/walasek/node-udp-messaging#readme",
"devDependencies": {
"docdash": "^1.1.1",
"faucet": "0.0.1",
"glob": "^7.1.4",
"jsdoc": "^3.6.2",
"nyc": "^14.1.1",
"optimist": "^0.6.1",
"zora": "^2.0.1"
},
"dependencies": {
"binary-encoder": "^0.4.0",
"debug": "^4.1.1",
"stun": "^1.3.1"
}
}