-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 968 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
{
"name": "@brightleaf/g2v",
"version": "3.0.0",
"description": "Convert an animated gif to an mp4 video",
"bin": {
"g2v": "bin/index.js"
},
"files": [
"bin/index.js"
],
"scripts": {
"test": "docker build -f docker/Dockerfile -t g2v .",
"preversion": "echo \"No preversion task\" && exit 0",
"postversion": "npm publish --access=public",
"postpublish": "git push origin --all --follow-tags && npx publisher"
},
"homepage": "https://brightleaf.github.io/g2v",
"author": "Brightleaf JS<[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/brightleaf/g2v/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/brightleaf/g2v.git"
},
"dependencies": {
"asciify": "^1.3.5",
"commander": "^2.20.0",
"ffmpeg-static": "^2.4.0",
"fluent-ffmpeg": "^2.1.2",
"ora": "^3.4.0"
},
"devDependencies": {
"@kev_nz/publisher": "^4.0.1"
}
}