-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.22 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
{
"name": "@dropb/ffmpeg-progress",
"version": "2.0.1",
"description": "Extract progress status from FFmpeg",
"types": "lib/types/index.d.ts",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"engines": {
"node": ">=14.18.20"
},
"scripts": {
"build": "rimraf lib && tsc -p tsconfig.build.json",
"lint": "eslint \"{src,test}/**/*.{ts,js}\" --fix",
"test": "jest",
"demo": "ts-node examples/simple.ts"
},
"author": "kukhariev",
"repository": {
"type": "git",
"url": "https://github.com/kukhariev/ffmpeg-progress.git"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^27.0.0",
"@types/node": "^14.18.26",
"@types/rimraf": "^3.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^4.0.0",
"ffmpeg-static": "^5.2.0",
"jest": "^28.0.0",
"prettier": "^2.0.0",
"rimraf": "^3.0.0",
"ts-jest": "^28.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.6.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverageFrom": [
"src/*.ts"
],
"collectCoverage": true
}
}