-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 871 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": "@topaz1008/ffmpeg-any",
"version": "1.0.1",
"description": "A command line tool that batch processes video files and directories with ffmpeg.",
"type": "module",
"author": {
"name": "Topaz Bar",
"email": "topaz1008@gmail.com"
},
"keywords": [
"ffmpeg",
"batch",
"video",
"powershell",
"bash",
"tools"
],
"dependencies": {
"chalk": "^5.2.0",
"minimist": "^1.2.7"
},
"bin": {
"ffmpeg-any": "./ffmpeg-any.js"
},
"scripts": {
"link": "npm link",
"eslint": "npx eslint . *.js",
"test": "jest"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/jest": "^24.3.1",
"eslint": "^8.31.0",
"eslint-config-google": "^0.14.0",
"jest": "^29.3.1"
}
}