forked from tedconf/node-m3u8
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 807 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
{
"name" : "m3u8",
"version" : "0.0.6",
"description" : "streaming m3u8 parser for Apple's HTTP Live Streaming protocol",
"main" : "./parser.js",
"keywords" : [
"m3u",
"m3u8",
"hls",
"http live streaming",
"stream"
],
"repository" : {
"type" : "git",
"url" : "http://github.com/tedconf/node-m3u8.git"
},
"dependencies" : {
"chunked-stream": "~0.0.1"
},
"devDependencies" : {
"mocha" : "~1.6.0",
"sinon" : "~1.5.0",
"should" : "7.1.1"
},
"engine" : {
"node" : ">=0.6.0"
},
"scripts": {
"test" : "make test"
},
"author" : {
"name" : "Mark Bogdanoff",
"email" : "[email protected]",
"url" : "http://www.ted.com"
}
}