-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
49 lines (49 loc) · 1014 Bytes
/
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
{
"name": "node-video-lib",
"version": "2.3.1",
"description": "Node.js Video Library / MP4 & FLV parser / MP4 builder / HLS muxer",
"license": "MIT",
"main": "index",
"author": {
"name": "Gennady Kozlenko",
"email": "[email protected]",
"url": "https://github.com/gkozlenko/"
},
"repository": {
"type": "git",
"url": "https://github.com/gkozlenko/node-video-lib.git"
},
"engines": {
"node": ">=6.0.0"
},
"keywords": [
"video",
"mp4",
"mov",
"flv",
"parser",
"packetizer",
"hls",
"m3u8",
"mpegts",
"mpeg-ts",
"tsmuxer",
"ts-muxer",
"aac",
"h264",
"h265",
"hevc"
],
"scripts": {
"prepare": "npm prune",
"test": "nyc -r text -r json-summary mocha ./test/tests.js",
"performance-test": "mocha ./test/performance-test.js",
"lint": "eslint \"lib/**\""
},
"devDependencies": {
"chai": "^4.4.1",
"eslint": "^7.32.0",
"mocha": "^9.2.2",
"nyc": "^15.1.0"
}
}