forked from greggman/ffmpegserver.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.38 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.38 KB
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
50
{
"name": "ffmpegserver.js",
"version": "0.0.1",
"description": "Server for encoding canvas frames as video",
"main": "start.js",
"scripts": {
"test": "node node_modules/mocha/bin/mocha --recursive",
"start": "node start.js"
},
"keywords": [
"video",
"canvas",
"encode",
"encoder",
"encoding",
"webgl"
],
"author": "Gregg Tavares",
"license": "MIT",
"dependencies": {
"bluebird": "^2.10.0",
"busboy": "^0.2.11",
"debug": "^2.2.0",
"express": "^4.13.3",
"ffmpeg-static": "^1.0.0",
"optionator": "^0.6.0",
"tmp": "0.0.27",
"ws": "git+https://github.com/websockets/ws.git#7d071120333b8fa8d76d91e08884f81d97a441d0"
},
"devDependencies": {
"almond": "^0.3.1",
"eslint": "^0.18.0",
"eslint-plugin-google-camelcase": "0.0.1",
"eslint-plugin-html": "git+https://github.com/greggman/eslint-plugin-html.git#fix-space-eating",
"eslint-plugin-one-variable-per-var": "0.0.3",
"eslint-plugin-optional-comma-spacing": "0.0.4",
"eslint-plugin-require-trailing-comma": "0.0.1",
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-requirejs": "^0.4.4",
"grunt-contrib-uglify": "^0.9.1",
"gruntify-eslint": "^1.0.1",
"mocha": "^2.3.2",
"request": "^2.61.0",
"requirejs": "^2.1.20",
"semver": "^4.3.4",
"should": "^7.1.0",
"supertest": "^1.1.0"
}
}