-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
44 lines (44 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
{
"name": "ffmpeg-stream",
"version": "1.0.0",
"description": "Node bindings to ffmpeg command, exposing stream based API",
"author": "phaux",
"repository": "phaux/node-ffmpeg-stream",
"license": "MIT",
"type": "module",
"keywords": [
"ffmpeg",
"convert",
"transcode",
"media",
"video"
],
"main": "./lib/index.js",
"exports": "./lib/index.js",
"scripts": {
"prepare": "tsc -p tsconfig.build.json",
"fix": "eslint --fix . && prettier --write .",
"test": "node --test --test-timeout 10000 --test-reporter spec --test-reporter-destination stdout --experimental-test-coverage --test-reporter lcov --test-reporter-destination lcov.info && tsc --noEmit && eslint ."
},
"files": [
"lib"
],
"prettier": {
"arrowParens": "avoid",
"printWidth": 100,
"semi": false
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/node": "^22.0.2",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"file-type": "^19.0.0",
"prettier": "^3.3.2",
"typescript": "^5.5.3"
},
"dependencies": {
"debug": "^4.2.0"
}
}