-
Notifications
You must be signed in to change notification settings - Fork 161
/
package.json
38 lines (38 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
{
"name": "node-webrtc-examples",
"version": "0.1.0",
"description": "This project presents a few example applications using node-webrtc.",
"private": true,
"main": "index.js",
"scripts": {
"lint": "eslint index.js examples lib test",
"start": "node index.js",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "tape 'test/unit/**/*.js'",
"test:integration": "tape 'test/integration/**/*.js'"
},
"keywords": [
"Web",
"Audio"
],
"author": "Mark Andrus Roberts <[email protected]>",
"license": "BSD-3-Clause",
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.0.20",
"Scope": "github:kevincennis/Scope",
"body-parser": "^1.18.3",
"browserify-middleware": "^8.1.1",
"canvas": "^2.4.1",
"color-space": "^1.16.0",
"express": "^4.16.4",
"fluent-ffmpeg": "^2.1.2",
"fluent-ffmpeg-multistream": "^1.0.0",
"node-fetch": "^2.3.0",
"uuid": "^3.3.2",
"wrtc": "^0.4.3"
},
"devDependencies": {
"eslint": "^5.15.1",
"tape": "^4.10.0"
}
}