-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 995 Bytes
/
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
{
"name": "streamroot-test-recrutement",
"version": "0.0.1",
"description": "Streamroot's test for applicant developpers",
"repository": {
"type": "git",
"url": "[email protected]:streamroot/webRTC-test.git"
},
"main": "index.js",
"scripts": {
"http-server": "node ./node_modules/http-server/bin/http-server -p 8089",
"signaling": "node ./app/server/signalingServer.js",
"start": "(npm run signaling &) && npm run http-server",
"styleCheck": "./node_modules/jshint/bin/jshint app/ && ./node_modules/echint/bin/echint -v && echo 'Style check OK'",
"test": "node ./node_modules/mocha/bin/mocha"
},
"author": {
"email": "[email protected]",
"name": "Streamroot",
"url": "https://www.streamroot.io"
},
"license": "GPL-3.0",
"dependencies": {
"ws": "^6.1.2"
},
"devDependencies": {
"echint": "^4.0.1",
"http-server": "^0.11.1",
"jshint": "^2.8.0",
"mocha": "*",
"should": "^7.1.1",
"sinon": "^1.17.2"
}
}