forked from Spark-NF/hls-downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.3 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
{
"name": "node-hls-downloader",
"version": "2.0.0",
"description": "Download HLS streams.",
"main": "dist/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"hls-downloader": "dist/cli.js"
},
"scripts": {
"lint": "eslint -c .eslintrc.js --ext ts src test",
"build": "rollup -c",
"watch": "rollup -cw",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Spark-NF/hls-downloader.git"
},
"author": "Spark-NF <spark_ps@hotmail.fr>",
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.21.1",
"commander": "^7.1.0",
"fs-extra": "^9.1.0",
"m3u8-parser": "^4.5.2",
"p-queue": "^6.6.2"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"@types/fs-extra": "^9.0.7",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.28",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"eslint": "^7.20.0",
"jest": "^26.6.3",
"rollup": "^2.39.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-typescript2": "^0.29.0",
"tempy": "^1.0.0",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
}
}