-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.38 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": "@eyevinn/hls-monitor",
"version": "0.5.0",
"description": "Library to monitor a hls stream(s)",
"main": "dist/index.js",
"scripts": {
"build": "tsc --project ./",
"start": "node example.js",
"postversion": "git push && git push --tags",
"test": "ts-node node_modules/jasmine/bin/jasmine"
},
"bin": {
"hls-monitor": "cli.js"
},
"author": "Eyevinn Technology AB <[email protected]>",
"contributors": [
"Oscar Nord <[email protected]> (Eyevinn Technology AB)",
"Nicholas Frederiksen <[email protected]> (Eyevinn Technology AB)",
"Johan Lautakoski <[email protected]> (Eyevinn Technology AB)",
"Jonas Birmé <[email protected]> (Eyevinn Technology AB)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Eyevinn/hls-monitor.git"
},
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^4.0.0",
"@types/node": "^17.0.5",
"jasmine": "^4.0.2",
"jasmine-ts": "^0.4.0",
"nock": "^13.2.4",
"typescript": "^4.5.5"
},
"dependencies": {
"@eyevinn/m3u8": "^0.5.6",
"async-mutex": "^0.3.2",
"fastify": "^3.27.0",
"fastify-swagger": "^4.13.1",
"node-fetch": "^2.6.5",
"node-getopt": "^0.3.2",
"short-uuid": "^4.2.0",
"ts-node": "^10.7.0",
"uuid": "^8.3.2"
},
"keywords": [
"hls",
"monitor",
"stream",
"tools"
]
}