-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
100 lines (100 loc) · 3.28 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"author": {
"email": "[email protected]",
"name": "Nur Rony",
"url": "https://nurrony.github.io"
},
"bugs": {
"url": "https://github.com/nurrony/hlsdownloader/issues"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"ky": "^1.7.2",
"p-limit": "^6.1.0"
},
"description": "Downloads HLS Playlist file and TS chunks",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/jest": "^29.5.12",
"clean-jsdoc-theme": "^4.3.0",
"esbuild": "^0.23.0",
"eslint": "^9.8.0",
"husky": "^9.1.3",
"jest": "^29.7.0",
"jsdoc": "^4.0.3",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"semantic-release": "24.0.0"
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"exports": {
"default": "./build/index.js"
},
"files": [
"build"
],
"homepage": "https://nurrony.github.io/hlsdownloader",
"hooks": {
"pre-commit": "npm run commitlint ${1} && npm run lint:fix && npm run lint && npm test"
},
"keywords": [
"cdn-priming",
"chunk",
"download",
"download-playlists",
"downloader",
"HLS",
"hlsdownloader",
"live",
"livestream",
"m3u8",
"m3u8downloader",
"playlist",
"streaming",
"streaming-video"
],
"license": "MIT",
"main": "./build/index.js",
"name": "hlsdownloader",
"release": {
"branches": [
"master"
],
"debug": true
},
"repository": {
"type": "git+https",
"url": "git+https://github.com/nurrony/hlsdownloader.git"
},
"scripts": {
"build": "npm run lint:fix && npm run lint && npm test && npm run build:clean && npm run compile && echo '📦 Build artifact has been generated successfully.'",
"build:clean": "rimraf -fr build && echo '🧹 Build artifacts has been cleaned.'",
"commitlint": "NODE_OPTIONS=--experimental-vm-modules npx commitlint --edit && echo '🔖 Commit message guidelines are followed properly.'",
"compile": "npx esbuild --outdir=build --platform=node --format=esm --target=node18 --packages=external --bundle --minify --tree-shaking=true --keep-names src/index.js",
"coverage": "NODE_OPTIONS=--experimental-vm-modules npx jest --coverage",
"docs:clean": "rimraf -fr ./docs && echo '🧹 All docs has been cleaned.'",
"docs:gen": "npm run docs:clean && NODE_OPTIONS=--experimental-vm-modules jsdoc -c jsdoc.json && echo '📄 Docs has been generated successfully.'",
"example": "NODE_OPTIONS=--experimental-vm-modules node example.mjs",
"lint": "eslint . && echo '💄 Coding style guideline has been followed properly.'",
"lint:fix": "eslint . --fix && echo '🔧 Coding style has been fixed as per guideline.'",
"prepare": "husky install",
"prepublishOnly": "npm run build",
"prod:start": "node index.js",
"semantic-release": "semantic-release",
"test": "npm run test:coverage:clean && NODE_OPTIONS=--experimental-vm-modules npx jest",
"test:coverage:clean": "rimraf -fr ./coverage && echo '🧹 All test coverage reports has been cleaned.'",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules npx jest --no-cache --watch",
"version": "echo $npm_package_version"
},
"snyk": true,
"type": "module",
"version": "0.0.0-semantic-release"
}