-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
47 lines (47 loc) · 1.22 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
{
"name": "avconv",
"version": "3.1.0",
"description": "Simply spawns an avconv process with any parameters and *streams* the result + conversion progress to you. Very small, fast, clean and does only this.",
"main": "avconv.js",
"author": "Michael Heuberger <michael.heuberger@binarykitchen.com>",
"contributors": [
{
"name": "Michael Heuberger",
"email": "michael.heuberger@binarykitchen.com"
},
{
"name": "Jelle De Loecker",
"email": "jelle@kipdola.be"
},
{
"name": "Jan Scheurer",
"email": "lj1102@googlemail.com"
}
],
"keywords": [
"avconv",
"video conversion",
"video encoding"
],
"devDependencies": {
"ffmpeg-static": "2.0.0",
"nodeunit": "0.10.2"
},
"dependencies": {
},
"engines": {
"node": ">=4.2.0"
},
"scripts": {
"test": "nodeunit tests/basics.js tests/parser.js"
},
"repository": {
"type": "git",
"url": "https://github.com/binarykitchen/avconv.git"
},
"directories": {
"test": "tests"
},
"license": "MIT",
"readmeFilename": "README.md"
}