forked from fluent-ffmpeg/node-fluent-ffmpeg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 841 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
40
{
"name": "@bropat/fluent-ffmpeg",
"version": "2.1.3",
"description": "A fluent API to FFMPEG (http://www.ffmpeg.org)",
"keywords": [
"ffmpeg"
],
"author": {
"name": "bropat",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "http://github.com/bropat/node-fluent-ffmpeg/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/bropat/node-fluent-ffmpeg"
},
"devDependencies": {
"@types/node": "^16.4.13",
"jsdoc": "latest",
"mocha": "latest",
"should": "latest",
"typescript": "^4.3.5"
},
"dependencies": {
"async": ">=0.2.9",
"which": "^2.0.2"
},
"engines": {
"node": ">=12.0.0"
},
"main": "index",
"types": "types/index.d.ts",
"scripts": {
"test": "make test"
},
"readmeFilename": "README.md"
}