forked from DanielleHuisman/transportstream.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 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
{
"name": "transportstream.js",
"description": "JavaScript MPEG transport stream player",
"version": "1.0.0",
"license": "ISC",
"author": "Daniel Huisman <[email protected]> (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"
},
"dependencies": {
"crc-32": "^1.0.1",
"hyperquest": "^1.2.0",
"iconv-lite": "^0.4.15",
"through2": "^2.0.1"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babelify": "^7.3.0",
"browserify": "^13.0.0",
"eslint": "^3.12.2",
"eslint-config-google": "^0.7.1",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-import": "^2.2.0",
"http-server": "^0.10.0",
"watchify": "^3.7.0"
}
}