forked from Experience-Monks/ffmpeg-gif
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.08 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
{
"name": "gify-cli",
"description": "CLI to convert video to high quality GIF with ffmpeg",
"version": "1.0.2",
"author": {
"name": "Matt DesLauriers",
"email": "dave.des@gmail.com",
"url": "https://github.com/mattdesl"
},
"bin": {
"gify": "./cli.js"
},
"bugs": {
"url": "https://github.com/FujiHaruka/node-gify-cli/issues"
},
"contributors": [
{
"name": "FujiHaruka",
"email": "fizzyjohn316@gmail.com",
"url": "https://github.com/FujiHaruka"
}
],
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.0.20",
"commander": "^3.0.2",
"rimraf": "^2.5.2"
},
"devDependencies": {
"prettier": "^1.18.2"
},
"files": [
"cli.js",
"gify.js"
],
"homepage": "https://github.com/FujiHaruka/node-gify-cli",
"keywords": [
"command",
"ffmpeg",
"gif",
"script",
"shell"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/FujiHaruka/node-gify-cli.git"
},
"scripts": {
"format": "prettier *.js test/*.js --write",
"test": "node test/test.js"
}
}