First release
This commit is contained in:
commit
fa6c85266e
2339 changed files with 761050 additions and 0 deletions
148
node_modules/@videojs/http-streaming/package.json
generated
vendored
Normal file
148
node_modules/@videojs/http-streaming/package.json
generated
vendored
Normal file
|
@ -0,0 +1,148 @@
|
|||
{
|
||||
"_from": "@videojs/http-streaming@2.9.1",
|
||||
"_id": "@videojs/http-streaming@2.9.1",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha512-QAtlrBBILOflrei1KE0GcSDDWiP888ZOySck6zWlQNYi/pXOm6QXTJHzOMIKiRQOndyJIZRTfLHedeUdUIDNLA==",
|
||||
"_location": "/@videojs/http-streaming",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "@videojs/http-streaming@2.9.1",
|
||||
"name": "@videojs/http-streaming",
|
||||
"escapedName": "@videojs%2fhttp-streaming",
|
||||
"scope": "@videojs",
|
||||
"rawSpec": "2.9.1",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "2.9.1"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/video.js"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/@videojs/http-streaming/-/http-streaming-2.9.1.tgz",
|
||||
"_shasum": "16b59efe24a832b89b5bd6a6c52f0d80ad7996a2",
|
||||
"_spec": "@videojs/http-streaming@2.9.1",
|
||||
"_where": "F:\\Documents\\websites\\BMM\\node_modules\\video.js",
|
||||
"author": {
|
||||
"name": "Brightcove, Inc"
|
||||
},
|
||||
"browserslist": [
|
||||
"defaults",
|
||||
"ie 11"
|
||||
],
|
||||
"bugs": {
|
||||
"url": "https://github.com/videojs/http-streaming/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.12.5",
|
||||
"@videojs/vhs-utils": "^3.0.2",
|
||||
"aes-decrypter": "3.1.2",
|
||||
"global": "^4.4.0",
|
||||
"m3u8-parser": "4.7.0",
|
||||
"mpd-parser": "0.17.0",
|
||||
"mux.js": "5.11.1",
|
||||
"video.js": "^6 || ^7"
|
||||
},
|
||||
"deprecated": false,
|
||||
"description": "Play back HLS and DASH with Video.js, even where it's not natively supported",
|
||||
"devDependencies": {
|
||||
"@rollup/plugin-replace": "^2.3.4",
|
||||
"@rollup/plugin-strip": "^2.0.1",
|
||||
"@videojs/generator-helpers": "~2.0.1",
|
||||
"d3": "^3.4.8",
|
||||
"es5-shim": "^4.5.13",
|
||||
"es6-shim": "^0.35.5",
|
||||
"jsdoc": "~3.6.6",
|
||||
"karma": "^5.2.3",
|
||||
"lodash": "^4.17.4",
|
||||
"lodash-compat": "^3.10.0",
|
||||
"nomnoml": "^0.3.0",
|
||||
"rollup": "^2.36.1",
|
||||
"rollup-plugin-worker-factory": "0.5.5",
|
||||
"shelljs": "^0.8.4",
|
||||
"sinon": "^8.1.1",
|
||||
"url-toolkit": "^2.2.1",
|
||||
"videojs-contrib-eme": "^3.8.1",
|
||||
"videojs-contrib-quality-levels": "^2.0.4",
|
||||
"videojs-generate-karma-config": "^7.1.0",
|
||||
"videojs-generate-rollup-config": "~6.1.0",
|
||||
"videojs-generator-verify": "~3.0.1",
|
||||
"videojs-http-source-selector": "^1.1.6",
|
||||
"videojs-standard": "^8.0.4"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8",
|
||||
"npm": ">=5"
|
||||
},
|
||||
"files": [
|
||||
"CONTRIBUTING.md",
|
||||
"dist/",
|
||||
"docs/",
|
||||
"index.html",
|
||||
"scripts/",
|
||||
"src/"
|
||||
],
|
||||
"generator-videojs-plugin": {
|
||||
"version": "7.6.3"
|
||||
},
|
||||
"homepage": "https://github.com/videojs/http-streaming#readme",
|
||||
"husky": {
|
||||
"hooks": {
|
||||
"pre-commit": "lint-staged"
|
||||
}
|
||||
},
|
||||
"keywords": [
|
||||
"videojs",
|
||||
"videojs-plugin"
|
||||
],
|
||||
"license": "Apache-2.0",
|
||||
"lint-staged": {
|
||||
"*.js": "vjsstandard --fix",
|
||||
"README.md": "doctoc --notitle"
|
||||
},
|
||||
"main": "dist/videojs-http-streaming.cjs.js",
|
||||
"module": "dist/videojs-http-streaming.es.js",
|
||||
"name": "@videojs/http-streaming",
|
||||
"peerDependencies": {
|
||||
"video.js": "^6 || ^7"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+ssh://git@github.com/videojs/http-streaming.git"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "npm-run-all -s clean -p build:*",
|
||||
"build-prod": "cross-env-shell NO_TEST_BUNDLE=1 'npm run build'",
|
||||
"build-test": "cross-env-shell TEST_BUNDLE_ONLY=1 'npm run build'",
|
||||
"build:js": "rollup -c scripts/rollup.config.js",
|
||||
"clean": "shx rm -rf ./dist ./test/dist && shx mkdir -p ./dist ./test/dist",
|
||||
"docs": "npm-run-all docs:*",
|
||||
"docs:api": "jsdoc src -g plugins/markdown -r -d docs/api",
|
||||
"docs:images": "node ./scripts/create-docs-images.js",
|
||||
"docs:toc": "doctoc --notitle README.md",
|
||||
"lint": "vjsstandard",
|
||||
"netlify": "node scripts/netlify.js",
|
||||
"posttest": "[ \"$CI_TEST_TYPE\" != 'coverage' ] || shx cat test/dist/coverage/text.txt",
|
||||
"prenetlify": "npm run build",
|
||||
"prepublishOnly": "npm-run-all build-prod && vjsverify --verbose",
|
||||
"server": "karma start scripts/karma.conf.js --singleRun=false --auto-watch",
|
||||
"start": "npm-run-all -p server watch",
|
||||
"test": "npm-run-all lint build-test && karma start scripts/karma.conf.js",
|
||||
"update-changelog": "conventional-changelog -p videojs -i CHANGELOG.md -s",
|
||||
"version": "is-prerelease || npm run update-changelog && git add CHANGELOG.md",
|
||||
"watch": "npm-run-all -p watch:*",
|
||||
"watch:js": "npm run build:js -- -w"
|
||||
},
|
||||
"version": "2.9.1",
|
||||
"vjsstandard": {
|
||||
"ignore": [
|
||||
"dist",
|
||||
"docs",
|
||||
"deploy",
|
||||
"test/dist",
|
||||
"utils",
|
||||
"src/*.worker.js"
|
||||
]
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue