-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.15 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
{
"name": "glitchbox-cli",
"description": "A CLI to glitch video files with code",
"version": "1.0.2",
"author": "Jakub Kopańko @pcktm",
"bin": {
"glitchbox": "./bin/run"
},
"bugs": "https://github.com/pcktm/glitchbox-cli/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"cfonts": "^2.8.1",
"del": "^5.1.0",
"ffedit-static": "^1.0.0",
"glitchbox-core": "^1.0.1",
"listr": "^0.14.3",
"tempy": "^0.5.0",
"tslib": "^1"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@types/node": "^10",
"rimraf": "^3.0.2",
"ts-node": "^8",
"typescript": "^3.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/pcktm/glitchbox-cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "glitchbox"
},
"repository": "pcktm/glitchbox-cli",
"scripts": {
"prepack": "rimraf lib && tsc -b",
"test": "echo NO TESTS",
"dev": "cross-env ./bin/run",
"dist:win": "oclif-dev pack:win"
},
"types": "lib/index.d.ts"
}