UNPKG

1.1 kBJSONView Raw
1{
2 "name": "m3u8stream",
3 "description": "Reads segments from a m3u8 or dash playlist into a consumable stream.",
4 "keywords": [
5 "m3u8",
6 "hls",
7 "dash",
8 "live",
9 "playlist",
10 "segments",
11 "stream"
12 ],
13 "version": "0.6.5",
14 "repository": {
15 "type": "git",
16 "url": "git://github.com/fent/node-m3u8stream.git"
17 },
18 "author": "fent (https://github.com/fent)",
19 "main": "./dist/index.js",
20 "files": [
21 "dist"
22 ],
23 "scripts": {
24 "build": "tsc -p tsconfig.build.json",
25 "test": "nyc --extension .ts --reporter=lcov --reporter=text-summary npm run test:unit",
26 "test:unit": "mocha -- --require ts-node/register test/*-test.ts"
27 },
28 "dependencies": {
29 "miniget": "^1.6.1",
30 "sax": "^1.2.4"
31 },
32 "devDependencies": {
33 "@types/lolex": "^3.1.1",
34 "@types/mocha": "^7.0.0",
35 "@types/node": "^13.1.0",
36 "@types/sax": "^1.0.1",
37 "lolex": "^6.0.0",
38 "mocha": "^7.0.1",
39 "nock": "^11.1.0",
40 "nyc": "^15.0.0",
41 "ts-node": "^8.4.1",
42 "typescript": "^3.4.2"
43 },
44 "engines": {
45 "node": ">=6"
46 },
47 "license": "MIT"
48}