forked from fluent-ffmpeg/node-fluent-ffmpeg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 914 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
32
33
34
35
36
37
38
39
{
"name": "fluent-ffmpeg",
"version": "2.1.3",
"description": "A fluent API to FFMPEG (http://www.ffmpeg.org)",
"keywords": [
"ffmpeg"
],
"author": "Stefan Schaermeli <[email protected]>",
"contributors": [
{
"name": "Felix Fichte",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"mail": "[email protected]",
"url": "http://github.com/fluent-ffmpeg/node-fluent-ffmpeg/issues"
},
"repository": "git://github.com/fluent-ffmpeg/node-fluent-ffmpeg.git",
"devDependencies": {
"jsdoc": "^4.0.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"should": "^13.0.0"
},
"dependencies": {
"async": "^0.2.9",
"which": "^1.1.1"
},
"engines": {
"node": ">=18"
},
"main": "index",
"scripts": {
"test": "NODE_ENV=test nyc mocha --require should --reporter spec",
"coverage": "nyc report --reporter=lcov"
}
}