forked from Spark-NF/hls-downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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.2.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 <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"axios": "^0.24.0",
"commander": "^7.2.0",
"fs-extra": "^10.0.0",
"m3u8-parser": "^4.7.0",
"p-queue": "^6.6.2"
},
"devDependencies": {
"@rollup/plugin-eslint": "^8.0.1",
"@rollup/plugin-json": "^4.1.0",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"jest": "^27.3.1",
"rollup": "^2.59.0",
"rollup-plugin-typescript2": "^0.30.0",
"tempy": "^1.0.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
}
}