-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
42 lines (42 loc) · 1009 Bytes
/
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
{
"name": "hls",
"version": "1.0.0",
"description": "HLS demuxer",
"main": "dist/index.js",
"scripts": {
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gliese1337/HLS.js.git"
},
"keywords": [
"HLS",
"video",
"streaming",
"MPEG-TS"
],
"author": "Logan R. Kearsley",
"license": "MIT",
"bugs": {
"url": "https://github.com/gliese1337/HLS.js/issues"
},
"homepage": "https://github.com/gliese1337/HLS.js#readme",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.1",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^10.2.0",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
},
"dependencies": {
"ts-demuxer": "^1.0.0"
}
}