-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 891 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 891 Bytes
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
{
"name": "autogif",
"version": "0.1.4",
"description": "Create animated gif",
"main": "dist/index.js",
"scripts": {
"start": "node dist/autogif-bin.js",
"prepublishOnly": "./node_modules/.bin/tsc",
"build": "./node_modules/.bin/tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/BriteSnow/node-autogif.git"
},
"keywords": [
"ffmpeg",
"animated",
"gif"
],
"bin": {
"autogif": "./dist/autogif-bin.js"
},
"author": "Jeremy Chone <jeremy.chone@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/BriteSnow/node-autogif",
"dependencies": {
"chokidar": "^3.3.1",
"fs-extra-plus": "^0.5.15",
"minimist": "^1.2.5",
"p-spawn": "^0.5.0"
},
"devDependencies": {
"@types/minimist": "^1.2.0",
"@types/mocha": "^7.0.2",
"mocha": "^7.1.1",
"typescript": "^3.8.3"
}
}