-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.47 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
{
"name": "pipe2pam",
"version": "0.7.1",
"description": "Parse individual pam images from an ffmpeg pipe when output video codec(-c:v) is set to pam and format(-f) is set to image2pipe.",
"main": "index.js",
"devDependencies": {
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"ffmpeg-static": "^5.1.0",
"prettier": "^3.0.1"
},
"scripts": {
"test": "npm run vaco && npm run vasi",
"preversion": "npm test",
"pack": "npm --verbose pack",
"lint": "./node_modules/.bin/eslint --fix .",
"vaco": "node tests/various_configs/test",
"vasi": "node tests/various_sizes/create-pams && node tests/various_sizes/test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevinGodell/pipe2pam.git"
},
"keywords": [
"ffmpeg",
"pam",
"image2pipe",
"rgb24",
"rgba",
"rgb48be",
"rgba64be",
"gray",
"ya8",
"gray16be",
"ya16be",
"monob",
"pbm",
"pgm",
"ppm",
"pnm",
"pixel"
],
"author": "Kevin Godell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kevinGodell/pipe2pam/issues"
},
"homepage": "https://github.com/kevinGodell/pipe2pam#readme",
"files": [
"package.json",
"index.js",
"LICENSE",
"README.md",
"lib/buffer-pool.js"
],
"engines": {
"node": ">=14"
},
"funding": [
{
"url": "https://github.com/kevinGodell"
}
]
}