forked from binarykitchen/avconv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 810 Bytes
/
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
{
"name": "avconv",
"version": "0.0.2",
"description": "simply spawns an avconv process with any parameters and returns the result to you. very small, fast, clean and does only this.",
"main": "avconv.js",
"author": "Michael Heuberger <michael.heuberger@binarykitchen.com>",
"keywords": [
"avconv",
"video conversion",
"video encoding"
],
"devDependencies": {
"nodeunit": "*"
},
"dependencies": null,
"engines": {
"node": ">=0.8"
},
"scripts": {
"test": "nodeunit tests/basics.js"
},
"repository": {
"type": "git",
"url": "https://github.com/binarykitchen/avconv.git"
},
"license": "MIT",
"readmeFilename": "README.md",
"directories": {
"test": "tests"
}
}