mock-hls-server
Version:
Fake a live/event HLS stream from a VOD one. Useful for testing.
53 lines (52 loc) • 1.23 kB
JSON
{
"name": "mock-hls-server",
"version": "0.1.1",
"description": "Fake a live/event HLS stream from a VOD one. Useful for testing.",
"main": "src/index.js",
"scripts": {
"start": "node bin/cli.js",
"pretest": "npm run lint",
"test": "mocha --recursive test",
"lint": "eslint .",
"lintFix": "eslint --fix ."
},
"bin": {
"mock-hls-server": "./bin/cli.js"
},
"hooks": {
"pre-commit": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tjenkinson/mock-hls-server.git"
},
"keywords": [
"hls",
"http-live-streaming",
"stream",
"streaming",
"live",
"cli",
"proxy"
],
"author": "Tom Jenkinson <tjcode@outlook.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/tjenkinson/mock-hls-server/issues"
},
"homepage": "https://github.com/tjenkinson/mock-hls-server#readme",
"dependencies": {
"command-line-args": "^4.0.7",
"express": "^4.16.2",
"node-fetch": "^2.6.1",
"url-toolkit": "^2.1.2",
"winston": "^2.4.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^7.8.1",
"husky": "^4.2.5",
"mocha": "^8.1.3",
"proxyquire": "^1.8.0"
}
}