-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
52 lines (52 loc) · 1.2 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
{
"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"
}
}