forked from fluent-ffmpeg/node-fluent-ffmpeg
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.56 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.56 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@ts-ffmpeg/fluent-ffmpeg",
"version": "2.2.6",
"description": "A fluent API to FFMPEG (http://www.ffmpeg.org) with types from @types/fluent-ffmpeg (https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/fluent-ffmpeg)",
"keywords": [
"ffmpeg"
],
"author": "Stefan Schaermeli <schaermu@gmail.com>",
"contributors": [
{
"name": "Felix Fichte",
"email": "spruce@space-ships.de"
},
{
"name": "KIM Jaesuck a.k.a. gim tcaesvk",
"githubUsername": "tcaesvk"
},
{
"name": "DingWeizhe",
"githubUsername": "DingWeizhe"
},
{
"name": "Mounir Abid",
"githubUsername": "mabidina"
},
{
"name": "Doyoung Ha",
"githubUsername": "hados99"
},
{
"name": "Prasad Nayak",
"githubUsername": "buzzertech"
},
{
"name": "Jonham Chen",
"githubUsername": "jonham"
}
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"bugs": {
"mail": "jonhamchen@gmail.com",
"url": "https://github.com/ts-ffmpeg/node-fluent-ffmpeg/issues"
},
"repository": "git://github.com/ts-ffmpeg/node-fluent-ffmpeg.git",
"devDependencies": {
"@types/node": "^24.1.0",
"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"
}
}