This repository was archived by the owner on Oct 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.24 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.24 KB
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": "transportstream.js",
"description": "JavaScript MPEG transport stream player",
"version": "1.0.0",
"license": "MIT",
"author": "Daniel Huisman <daniel@huisman.me> (https://danielhuisman.io)",
"repository": "github:DanielHuisman/transportstream.js",
"keywords": [
"transport",
"stream",
"mpeg",
"browser"
],
"scripts": {
"lint": "eslint src --color",
"build": "browserify src/index.js -o dist/transportstream.js -t babelify",
"watch": "watchify src/index.js -o dist/transportstream.js -t babelify",
"serve": "http-server . -p 3000 -c-1",
"serve-example": "http-server example -p 3001 -c-1"
},
"dependencies": {
"ac3.js": "^0.2.4",
"av": "^0.4.9",
"crc-32": "^1.2.2",
"hyperquest": "^2.1.3",
"iconv-lite": "^0.6.3",
"through2": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.11",
"babel-eslint": "^10.1.0",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"eslint": "^8.13.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-import": "^2.26.0",
"http-server": "^14.1.0",
"watchify": "^4.0.0"
}
}