forked from fent/node-m3u8stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1 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
{
"name": "m3u8stream",
"description": "Reads segments from a m3u8 or dash playlist into a consumable stream.",
"keywords": [
"m3u8",
"hls",
"dash",
"live",
"playlist",
"segments",
"stream"
],
"version": "0.6.2",
"repository": {
"type": "git",
"url": "git://github.com/fent/node-m3u8stream.git"
},
"author": "fent (https://github.com/fent)",
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "nyc mocha test/*-test.js"
},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"test/*-test.js"
],
"reporter": [
"text-summary",
"lcov"
]
},
"dependencies": {
"miniget": "^1.4.0",
"sax": "^1.2.4"
},
"devDependencies": {
"@types/node": "^12.7.2",
"@types/sax": "^1.0.1",
"lolex": "^5.0.0",
"mocha": "^6.2.0",
"nock": "^11.1.0",
"nyc": "^14.1.1",
"typescript": "^3.4.2"
},
"engines": {
"node": ">=6"
},
"license": "MIT"
}