-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
56 lines (56 loc) · 1.64 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
{
"name": "pipe2jpeg",
"version": "0.5.0",
"description": "Parse individual jpegs from an ffmpeg pipe when output codec is set to mjpeg and format is set to image2pipe, singlejpeg, mjpeg, or mpjeg.",
"main": "index.js",
"devDependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jsdoc": "^4.0.2",
"prettier": "^2.8.8"
},
"scripts": {
"test": "node tests/test5.js && node tests/test6.js && node tests/test7.js && node tests/test8.js && node tests/test9.js && node tests/test10.js && node tests/test11.js && node tests/test12.js && node tests/test13.js && node tests/test14.js && npm run vaco",
"preversion": "npm test",
"postversion": "npm run doc",
"pack": "npm --verbose pack",
"doc": "./node_modules/.bin/jsdoc index.js -d docs && git commit -m \"update docs\" -- docs",
"lint": "./node_modules/.bin/eslint --fix .",
"vaco": "node tests/various_configs/test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevinGodell/pipe2jpeg.git"
},
"keywords": [
"ffmpeg",
"jpeg",
"image2pipe",
"singlejpeg",
"mjpeg",
"mpjpeg"
],
"author": "Kevin Godell <kevin.godell@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kevinGodell/pipe2jpeg/issues"
},
"homepage": "https://github.com/kevinGodell/pipe2jpeg#readme",
"files": [
"package.json",
"index.js",
"LICENSE",
"README.md",
"lib/buffer-pool.js"
],
"engines": {
"node": ">=14"
},
"funding": [
{
"url": "https://github.com/kevinGodell"
}
]
}