forked from binarykitchen/avconv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.17 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
{
"name": "avconv",
"version": "3.0.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": {
"nodeunit": "^0.9.0"
},
"dependencies": {
},
"engines": {
"node": "~0.10.20"
},
"scripts": {
"test": "nodeunit tests/basics.js"
},
"repository": {
"type": "git",
"url": "https://github.com/binarykitchen/avconv.git"
},
"directories": {
"test": "tests"
},
"license": "MIT",
"readmeFilename": "README.md"
}