-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "grouphone",
"version": "0.0.0",
"description": "Distraction free group audio calls over WebRTC",
"scripts": {
"start": "node server",
"lint": "eslint .",
"format": "eslint --fix .",
"test": "npm run lint"
},
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/applait/grouphone.git"
},
"keywords": [
"grouphone",
"webrtc",
"audio",
"signaling",
"multiparty",
"api"
],
"author": "Applait Technologies LLP",
"license": "LicenseRef-LICENSE",
"bugs": {
"url": "https://github.com/applait/grouphone/issues"
},
"homepage": "https://github.com/applait/grouphone#readme",
"dependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.2",
"mediasoup": "^2.0.13",
"ws": "^4.0.0"
},
"devDependencies": {
"eslint": "^4.17.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1"
}
}