-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.42 KB
/
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
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": "video-sync",
"version": "0.0.0",
"author": "Chaphasilor",
"bin": {
"video-sync": "./bin/run"
},
"bugs": "https://github.com/Chaphasilor/video-sync/issues",
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.2",
"better-logging": "^4.5.0",
"bmp-js": "^0.1.0",
"cli-ux": "^5.5.1",
"inquirer": "^8.0.0",
"inquirer-fs-selector": "^1.2.0",
"ms": "^2.1.3",
"node-exec-promise": "^1.0.2",
"node-ffprobe": "^3.0.0",
"ora": "^5.4.0",
"pixelmatch": "^5.2.1",
"pngjs": "^6.0.0",
"resize-img": "^2.0.0",
"ssim.js": "^3.5.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"eslint": "^5.16.0",
"eslint-config-oclif": "^3.1.0"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/src"
],
"pkg": {
"scripts": [
"./src/**/*.js",
"./util/**/*.js"
],
"outputPath": "dist",
"targets": [
"linux-x64",
"win-x64",
"macos-x64"
]
},
"homepage": "https://github.com/Chaphasilor/video-sync",
"keywords": [
"oclif"
],
"license": "GPL-3.0",
"main": "src/index.js",
"oclif": {
"bin": "video-sync"
},
"repository": "Chaphasilor/video-sync",
"scripts": {
"posttest": "eslint .",
"prepack": "oclif-dev readme",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md"
}
}