freechat/rtc-server/package.json
shockrah 2a1881db20 + Adding commandline parameter parser for specifying wss-hmac and api-hmac
The respective flags are -w|--wss-hmac and -H|--hmac
Default values are wss-hmac.secre hmac.secrett respectively
2021-04-27 13:24:59 -07:00

26 lines
610 B
JSON

{
"name": "rtc-server",
"version": "1.0.0",
"description": "RTC for Freechat",
"main": "main.js",
"scripts": {
"start": "node main.js",
"autotest": "node main.js -H ../hmac.secret -w ../wss-hmac.secret"
},
"repository": {
"type": "git",
"url": "git+https://gitlab.com/shockrah/freechat.git"
},
"author": "shockrah",
"license": "GPL-3.0",
"bugs": {
"url": "https://gitlab.com/shockrah/freechat/issues"
},
"homepage": "https://gitlab.com/shockrah/freechat#readme",
"dependencies": {
"argparse": "^2.0.1",
"jsonwebtoken": "^8.5.1",
"ws": "^7.4.4"
}
}