{ "name": "@videojs/http-streaming", "version": "1.11.0-alpha.1", "description": "Play back HLS and DASH with Video.js, even where it's not natively supported", "main": "dist/videojs-http-streaming.cjs.js", "module": "dist/videojs-http-streaming.es.js", "repository": { "type": "git", "url": "git@github.com:videojs/http-streaming.git" }, "scripts": { "prenetlify": "npm run build", "netlify": "node scripts/netlify.js", "prebuild": "npm run clean", "build": "npm-run-all -p build:*", "build:js": "rollup -c scripts/rollup.config.js", "clean": "shx rm -rf ./dist ./test/dist", "postclean": "shx mkdir -p ./dist ./test/dist", "build:test-manifests": "node ./scripts/create-test-manifests.js", "build:test-segments": "node ./scripts/create-test-segments.js", "docs": "npm-run-all docs:*", "docs:api": "jsdoc src -g plugins/markdown -r -d docs/api", "docs:toc": "doctoc --notitle README.md", "docs:images": "node ./scripts/create-docs-images.js", "lint": "vjsstandard", "server": "karma start scripts/karma.conf.js --singleRun=false --auto-watch", "start": "npm-run-all -p server watch", "pretest": "npm-run-all lint build", "test": "npm-run-all test:*", "test:unit": "karma start scripts/karma.conf.js", "test:verify": "vjsverify --verbose", "update-changelog": "conventional-changelog -p videojs -i CHANGELOG.md -s", "preversion": "npm test", "version": "is-prerelease || npm run update-changelog && git add CHANGELOG.md", "watch": "npm-run-all -p watch:*", "watch:test-manifests": "npm run build:test-manifests -- --watch", "watch:test-segments": "npm run build:test-segments -- --watch", "watch:js": "npm run build:js -- -w", "prepublishOnly": "npm-run-all build test:verify" }, "keywords": [ "videojs", "videojs-plugin" ], "author": "Brightcove, Inc", "license": "Apache-2.0", "vjsstandard": { "ignore": [ "dist", "docs", "deploy", "test/dist", "utils", "src/*.worker.js" ] }, "files": [ "CONTRIBUTING.md", "dist/", "docs/", "index.html", "scripts/", "src/" ], "dependencies": { "aes-decrypter": "3.0.0", "global": "^4.3.2", "m3u8-parser": "4.4.0", "mpd-parser": "0.8.1", "mux.js": "5.2.0-3", "url-toolkit": "^2.1.3", "video.js": "^6 || ^7" }, "devDependencies": { "@gkatsev/rollup-plugin-bundle-worker": "^1.0.2", "@videojs/generator-helpers": "~1.1.1", "d3": "^3.4.8", "es5-shim": "^4.5.13", "es6-shim": "^0.35.5", "jsdoc": "BrandonOCasey/jsdoc#feat/plugin-from-cli", "karma": "^4.0.0", "lodash": "^4.17.4", "lodash-compat": "^3.10.0", "nomnoml": "^0.3.0", "rollup": "^1.10.0", "shelljs": "^0.8.2", "sinon": "1.10.3", "videojs-contrib-eme": "^3.2.0", "videojs-contrib-quality-levels": "^2.0.4", "videojs-generate-karma-config": "~5.2.0", "videojs-generate-rollup-config": "~3.2.1", "videojs-generator-verify": "~1.2.0", "videojs-standard": "^8.0.3" }, "generator-videojs-plugin": { "version": "7.6.3" }, "browserslist": [ "defaults", "ie 11" ], "engines": { "node": ">=8", "npm": ">=5" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.js": [ "vjsstandard --fix", "git add" ], "README.md": [ "doctoc --notitle", "git add" ] } }