Commit updated Javascript packages
This commit is contained in:
118
build/javascript/node_modules/mux.js/package.json
generated
vendored
Normal file
118
build/javascript/node_modules/mux.js/package.json
generated
vendored
Normal file
@@ -0,0 +1,118 @@
|
||||
{
|
||||
"_args": [
|
||||
[
|
||||
"mux.js@5.6.6",
|
||||
"/home/runner/work/owncast/owncast/build/javascript"
|
||||
]
|
||||
],
|
||||
"_from": "mux.js@5.6.6",
|
||||
"_id": "mux.js@5.6.6",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-q5VIpqb28UVs5dKsOQkpHrPxqInMjiZ/f/4qW4gEBKlm2xeBasRjRJIokixFWj+r6PWfVSEygvPffXnG7aK99g==",
|
||||
"_location": "/mux.js",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "mux.js@5.6.6",
|
||||
"name": "mux.js",
|
||||
"escapedName": "mux.js",
|
||||
"rawSpec": "5.6.6",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "5.6.6"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/@videojs/http-streaming"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/mux.js/-/mux.js-5.6.6.tgz",
|
||||
"_spec": "5.6.6",
|
||||
"_where": "/home/runner/work/owncast/owncast/build/javascript",
|
||||
"author": {
|
||||
"name": "Brightcove"
|
||||
},
|
||||
"browser": "./lib/index.js",
|
||||
"browserify-shim": {
|
||||
"qunit": "global:QUnit"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/videojs/mux.js/issues"
|
||||
},
|
||||
"description": "A collection of lightweight utilities for inspecting and manipulating video container formats.",
|
||||
"devDependencies": {
|
||||
"browserify": "^12.0.1",
|
||||
"browserify-shim": "^3.8.12",
|
||||
"bundle-collapser": "^1.2.1",
|
||||
"eslint": "^2.10.2",
|
||||
"express": "^4.13.3",
|
||||
"in-publish": "^2.0.0",
|
||||
"jshint": "^2.9.1-rc2",
|
||||
"karma": "^0.13.9",
|
||||
"karma-browserify": "^4.4.2",
|
||||
"karma-chrome-launcher": "^2.2.0",
|
||||
"karma-firefox-launcher": "^1.1.0",
|
||||
"karma-qunit": "^0.1.5",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"portscanner": "^1.0.0",
|
||||
"qunitjs": "^1.0.0",
|
||||
"serve-static": "^1.10.0",
|
||||
"shelljs": "^0.8.3",
|
||||
"uglify-js": "^2.6.2",
|
||||
"watchify": "^3.6.1",
|
||||
"webworkify": "^1.0.2"
|
||||
},
|
||||
"eslintConfig": {
|
||||
"ignore": [
|
||||
"dist",
|
||||
"dist-test",
|
||||
"docs",
|
||||
"scripts"
|
||||
]
|
||||
},
|
||||
"files": [
|
||||
"lib/",
|
||||
"dist/"
|
||||
],
|
||||
"homepage": "https://github.com/videojs/mux.js#readme",
|
||||
"keywords": [
|
||||
"video",
|
||||
"container",
|
||||
"transmux",
|
||||
"mux",
|
||||
"player",
|
||||
"hls",
|
||||
"mp4",
|
||||
"flv",
|
||||
"aac",
|
||||
"h264"
|
||||
],
|
||||
"license": "Apache-2.0",
|
||||
"main": "./lib/index.js",
|
||||
"name": "mux.js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/videojs/mux.js.git"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "npm run mkdirs && npm-run-all -p build:* && npm run uglify",
|
||||
"build:flv": "browserify -s muxjs lib/flv/index.js -p bundle-collapser/plugin -o dist/mux-flv.js",
|
||||
"build:js": "browserify -s muxjs lib/index.js -p bundle-collapser/plugin -o dist/mux.js",
|
||||
"build:mp4": "browserify -s muxjs lib/mp4/index.js -p bundle-collapser/plugin -o dist/mux-mp4.js",
|
||||
"build:test": "browserify test/*.test.js -g browserify-shim -p bundle-collapser/plugin -o dist-test/mux.js",
|
||||
"clean": "rm -rf dist dist-test",
|
||||
"lint": "eslint \"lib/**/*.js\" \"test/**/*.js\"",
|
||||
"mkdirs": "mkdir -p dist dist-test",
|
||||
"netlify": "node scripts/netlify.js",
|
||||
"prepublish": "not-in-install && npm run build || in-install",
|
||||
"serve": "node scripts/server.js",
|
||||
"start": "npm-run-all -p watch serve",
|
||||
"test": "npm run lint && karma start test/karma/karma.conf.js",
|
||||
"uglify": "npm-run-all -p uglify:*",
|
||||
"uglify:flv": "uglifyjs --mangle --compress -o dist/mux-flv.min.js dist/mux-flv.js && node scripts/insert-license-header.js dist/mux-flv.min.js",
|
||||
"uglify:js": "uglifyjs --mangle --compress -o dist/mux.min.js dist/mux.js && node scripts/insert-license-header.js dist/mux.min.js",
|
||||
"uglify:mp4": "uglifyjs --mangle --compress -o dist/mux-mp4.min.js dist/mux-mp4.js && node scripts/insert-license-header.js dist/mux-mp4.min.js",
|
||||
"watch": "npm run mkdirs && npm-run-all -p watch:*",
|
||||
"watch:js": "watchify -s muxjs -p bundle-collapser/plugin lib/index.js -v -o dist/mux.js",
|
||||
"watch:test": "watchify test/*.test.js -g browserify-shim -p bundle-collapser/plugin -v -o dist-test/mux.js"
|
||||
},
|
||||
"version": "5.6.6"
|
||||
}
|
||||
Reference in New Issue
Block a user