forked from yuanqing/vdx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.77 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
68
69
70
{
"name": "vdx",
"version": "0.0.8",
"description": "An intuitive CLI for processing video, powered by FFmpeg",
"keywords": [
"ffmpeg",
"gif",
"video"
],
"author": "Yuan Qing Lim",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/yuanqing/vdx.git"
},
"files": [
"lib"
],
"bin": {
"vdx": "lib/cli.js"
},
"scripts": {
"build": "yarn run clean && tsc",
"clean": "rimraf '*.log' .nyc_output build coverage lib",
"coverage": "rimraf .nyc_output coverage && nyc --reporter=html --reporter=lcov --reporter=text yarn run test",
"fix": "eslint --fix 'src/**/*.ts'",
"lint": "eslint 'src/**/*.ts'",
"prepublishOnly": "yarn run build",
"reset": "yarn run clean && rimraf node_modules yarn.lock && yarn install",
"test": "tap 'src/**/__tests__/*.ts' --coverage-report html --coverage-report text --jobs-auto --no-browser --reporter terse",
"watch": "yarn run clean && tsc --watch"
},
"dependencies": {
"globby": "^11.0.1",
"kleur": "^4.1.3",
"nopt": "^5.0.0",
"p-all": "^3.0.0",
"which": "^2.0.2"
},
"devDependencies": {
"@types/node": "^14.14.2",
"@types/nopt": "^3.0.29",
"@types/npmlog": "^4.1.2",
"@types/prettier": "^2.1.5",
"@types/tap": "^14.10.1",
"@types/which": "^1.3.2",
"eslint": "^7.12.0",
"eslint-config-yuanqing": "^0.0.3",
"husky": "^4.3.0",
"lint-staged": "^10.4.2",
"prettier": "^2.1.2",
"rimraf": "^3.0.2",
"tap": "^14.10.8",
"typescript": "^4.0.3"
},
"eslintConfig": {
"extends": "eslint-config-yuanqing"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint"
]
},
"prettier": "eslint-config-yuanqing/prettier"
}