-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.4 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": "webrtc-presentation-conference-server",
"version": "0.1.0",
"description": "Web and signaling server for presentation conference power by WebRTC",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "test",
"set-link": "rm -f \"./node_modules/_\" && ln -s \"./../src/\" \"./node_modules/_\"",
"copy-assets": "chmod a+x ./script/copy-assets && ./script/copy-assets",
"postinstall": "npm run set-link && npm run copy-assets"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ORusak/webrtc-presentation-conference-server.git"
},
"keywords": [
"webrtc",
"socket",
"signaling",
"nodejs"
],
"author": "Oleg Rusak",
"license": "MIT",
"bugs": {
"url": "https://github.com/ORusak/webrtc-presentation-conference-server/issues"
},
"homepage": "https://github.com/ORusak/webrtc-presentation-conference-server#readme",
"dependencies": {
"config": "1.28.1",
"uuid": "3.1.0",
"winston": "2.4.0",
"server": "1.0.15",
"lodash": "4.17.4",
"tags-input": "git+https://github.com/ORusak/tags-input.git",
"d3-sandbox": "git+https://github.com/ORusak/d3-sandbox.git",
"webrtc-presentation-conference-app": "git+https://github.com/ORusak/webrtc-presentation-conference-app.git"
},
"devDependencies": {
"standard": "10.0.3",
"eslint": "4.11.0"
},
"engines": {
"node": "8.*.*"
}
}