forked from kanongil/node-hls-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.05 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
{
"name": "hls-tools",
"version": "0.0.0",
"description": "HTTP Live Streaming (HLS) tools",
"keywords": [
"hls",
"m3u8",
"streaming"
],
"main": "index.js",
"scripts": {
"test": "mocha -R list"
},
"directories": {
"test": "test"
},
"bin": {
"hlsdump": "./bin/hlsdump",
"hlsmon": "./bin/hlsmon",
"hlsrecord": "./bin/hlsrecord"
},
"repository": {
"type": "git",
"url": "http://github.com/kanongil/node-hls-tools.git"
},
"author": "Gil Pedersen <gpdev@gpost.dk>",
"license": "BSD",
"dependencies": {
"commander": "^2.3.0",
"debug": "^2.0.0",
"deep-equal": "^1.0.0",
"hls-segment-reader": "^2.0.0",
"m3u8parse": "^0.1.13",
"measured": "^1.0.0",
"mime-types": "^2.0.1",
"mkdirp": "^0.5.0",
"noptify": "0.0.3",
"oncemore": "^1.0.0",
"readable-stream": "~1.0.0",
"streamprocess": "^1.0.0",
"udp-blast": "^1.0.0",
"uristream": "^1.1.0",
"write-file-atomic": "^1.1.0"
},
"devDependencies": {},
"engines": {
"node": "~0.8.0 || >=0.9.12"
}
}