UNPKG

videojs-vr

Version:

A plugin to add 360 and VR video support to video.js.

129 lines (128 loc) 3.47 kB
{ "name": "videojs-vr", "version": "1.7.1", "description": "A plugin to add 360 and VR video support to video.js.", "author": { "name": "James Broberg", "email": "james.broberg@metacdn.com" }, "contributors": [ { "name": "Sean Lawrence", "email": "lawrensm@gmail.com" }, { "name": "Mitchell Trent", "email": "mitch@tofi.com.au" }, { "name": "Brandon Casey", "email": "branonocasey@gmail.com" } ], "license": "Apache-2.0", "repository": { "type": "git", "url": "https://github.com/videojs/videojs-vr" }, "main": "dist/videojs-vr.cjs.js", "module": "dist/videojs-vr.es.js", "generator-videojs-plugin": { "version": "7.7.3" }, "scripts": { "netlify": "npm run build && node scripts/netlify.js", "build-test": "cross-env-shell TEST_BUNDLE_ONLY=1 'npm run build'", "build-prod": "cross-env-shell NO_TEST_BUNDLE=1 'npm run build'", "build": "npm-run-all -s clean -p build:*", "build:js": "rollup -c scripts/rollup.config.js", "build:css": "node-sass src/plugin.scss dist/videojs-vr.css --output-style=compressed --linefeed=lf", "build:lang": "vjslang --dir dist/lang", "clean": "shx rm -rf ./dist ./test/dist && shx mkdir -p ./dist ./test/dist", "lint": "vjsstandard", "prepublishOnly": "npm-run-all build-prod && vjsverify --verbose", "start": "npm-run-all -p server watch", "server": "karma start scripts/karma.conf.js --singleRun=false --auto-watch", "test": "npm run build-test && karma start scripts/karma.conf.js", "posttest": "shx cat test/dist/coverage/text.txt", "preversion": "npm test", "version": "is-prerelease || npm run update-changelog && git add CHANGELOG.md", "update-changelog": "conventional-changelog -p videojs -i CHANGELOG.md -s", "watch": "npm-run-all -p watch:*", "watch:js": "npm run build:js -- -w", "watch:css": "npm run build:css -- -w" }, "keywords": [ "videojs", "videojs-plugin" ], "vjsstandard": { "ignore": [ "dist", "docs", "test/dist" ] }, "files": [ "CONTRIBUTING.md", "dist/", "docs/", "index.html", "scripts/", "src/", "test/" ], "greenkeeper": { "ignore": [ "three" ] }, "dependencies": { "@babel/runtime": "^7.5.5", "global": "^4.4.0", "three": "0.93.0", "video.js": "^6 || ^7", "webvr-polyfill": "0.10.6" }, "devDependencies": { "@videojs/generator-helpers": "~1.2.0", "conventional-changelog-cli": "^2.0.28", "conventional-changelog-videojs": "^3.0.0", "jsdoc": "BrandonOCasey/jsdoc#feat/plugin-from-cli", "karma": "^4.0.0", "lint-staged": "^9.4.3", "node-sass": "^4.12.0", "not-prerelease": "^1.0.1", "npm-merge-driver-install": "^1.1.1", "npm-run-all": "^4.1.5", "omnitone": "^1.3.0", "rollup": "^1.12.0", "rollup-plugin-re": "^1.0.7", "shx": "^0.3.2", "sinon": "^7.2.2", "videojs-generate-karma-config": "~5.3.1", "videojs-generate-rollup-config": "~5.0.1", "videojs-generator-verify": "~2.0.0", "videojs-languages": "^2.0.0", "videojs-standard": "^8.0.3" }, "browserslist": [ "defaults", "ie 11" ], "lint-staged": { "*.js": [ "vjsstandard --fix", "git add" ], "README.md": [ "doctoc --notitle", "git add" ] }, "husky": { "hooks": { "pre-commit": "lint-staged" } } }