-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
75 lines (75 loc) · 2.06 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
71
72
73
74
75
{
"name": "mp4frag",
"version": "0.7.0",
"description": "A parser that reads piped data from ffmpeg containing a fragmented mp4 and splits it into an initialization segment and media segments. Designed for streaming live video relayed from cctv cameras.",
"main": "index.js",
"scripts": {
"test": "npm run codecs && npm run romf && npm run romt && npm run smch && npm run spch && npm run vaco",
"preversion": "npm test && npm run codecs",
"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 .",
"codecs": "npm run aac && npm run avc && npm run hevc",
"aac": "node tests/aac/test",
"avc": "node tests/avc/test",
"hevc": "node tests/hevc/test",
"romf": "node tests/readableObjectMode_false/test",
"romt": "node tests/readableObjectMode_true/test",
"smch": "node tests/small_chunk/test",
"spch": "node tests/split_chunk/test",
"vaco": "node tests/various_configs/test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevinGodell/mp4frag.git"
},
"keywords": [
"mp4",
"fmp4",
"fragmented",
"fragment",
"fragments",
"segment",
"segments",
"h264",
"h265",
"aac",
"ffmpeg",
"hls",
"m3u8",
"media",
"source",
"extension",
"iptv",
"cctv",
"live",
"stream",
"streaming"
],
"author": "Kevin Godell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kevinGodell/mp4frag/issues"
},
"homepage": "https://github.com/kevinGodell/mp4frag#readme",
"devDependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"ffmpeg-static": "^5.1.0",
"jsdoc": "^4.0.2",
"prettier": "^2.8.8"
},
"files": [
"package.json",
"index.js",
"LICENSE",
"README.md",
"lib/buffer-pool.js"
],
"engines": {
"node": ">=14"
}
}