forked from bengreenier/webrtc-signal-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.14 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
47
48
49
{
"name": "webrtc-signal-http",
"version": "2.0.1",
"description": "opinionated webrtc signal provider using http as a protocol",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"files": [
"dist/**/*"
],
"directories": {
"lib": "lib",
"test": "test"
},
"bin": {
"webrtc-signal-http": "./dist/index.js"
},
"scripts": {
"test": "ts-mocha test/**/*.ts",
"prepare": "npm run build",
"build": "tsc -p .",
"lint": "tslint -c tslint.json -p tsconfig.json",
"start": "node dist/index.js"
},
"keywords": [
"webrtc",
"signal"
],
"author": "Ben Greenier",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"express": "^4.16.2",
"express-bunyan-logger": "^1.3.2",
"strict-event-emitter-types": "^2.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.4",
"@types/express": "^4.16.2",
"@types/express-bunyan-logger": "^1.3.1",
"@types/mocha": "^5.0.0",
"mocha": "^5.0.0",
"supertest": "^3.0.0",
"ts-mocha": "^6.0.0",
"tslint": "^5.18.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.4.5"
}
}