-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
49 lines (49 loc) · 1.27 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": "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": {
"busboy": "^0.3.1",
"debug": "^4.1.1",
"express": "^4.17.1",
"ffmpeg-static": "^5.0.0",
"optionator": "^0.8.3",
"tmp": "^0.1.0",
"ws": "^7.2.1"
},
"devDependencies": {
"almond": "^0.3.1",
"eslint": "^6.8.0",
"eslint-plugin-google-camelcase": "0.0.2",
"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": "^1.0.4",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-requirejs": "^1.0.0",
"grunt-contrib-uglify": "^4.0.1",
"gruntify-eslint": "^5.0.0",
"mocha": "^7.0.0",
"request": "^2.88.0",
"requirejs": "^2.3.6",
"semver": "^7.1.1",
"should": "^13.2.3",
"supertest": "^4.0.2"
}
}