-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 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
{
"name": "hls-live-thumbnails",
"version": "1.8.0",
"description": "A service which will generate thumbnails from a live HLS stream.",
"main": "src/index.js",
"bin": "src/cli.js",
"scripts": {
"generateDocs": "./node_modules/.bin/jsdoc -r -d ./docs ./src",
"lint": "./node_modules/.bin/jshint src/"
},
"repository": {
"type": "git",
"url": "[email protected]:tjenkinson/hls-live-thumbnails.git"
},
"keywords": [
"hls",
"thumbnails",
"stream",
"live",
"m3u8",
"apple"
],
"author": "Tom Jenkinson",
"license": "MIT",
"bugs": {
"url": "https://github.com/tjenkinson/hls-live-thumbnails/issues"
},
"homepage": "https://github.com/tjenkinson/hls-live-thumbnails",
"dependencies": {
"body-parser": "^1.19.0",
"command-line-args": "^5.1.1",
"event-emitter": "^0.3.5",
"express": "^4.17.1",
"fluent-ffmpeg": "^2.1.2",
"js-logger": "^1.6.1",
"m3u8": "tjenkinson/node-m3u8#hls-live-thumbnails",
"request": "^2.73.0"
},
"devDependencies": {
"jsdoc": "^3.6.7",
"jshint": "^2.12.0"
}
}