2013-01-11 23:02:20 -08:00
|
|
|
{
|
|
|
|
"name": "video.js",
|
|
|
|
"description": "An HTML5 and Flash video player with a common API and skin for both.",
|
2018-09-25 15:26:41 -04:00
|
|
|
"version": "7.2.4",
|
2017-05-25 19:40:35 -04:00
|
|
|
"main": "./dist/video.cjs.js",
|
2018-07-03 18:04:41 +02:00
|
|
|
"module": "./dist/video.es.js",
|
2016-08-17 17:16:41 -04:00
|
|
|
"style": "./dist/video-js.css",
|
2015-03-12 11:23:47 -07:00
|
|
|
"copyright": "Copyright Brightcove, Inc. <https://www.brightcove.com/>",
|
|
|
|
"license": "Apache-2.0",
|
2014-02-14 16:52:48 -08:00
|
|
|
"keywords": [
|
|
|
|
"flash",
|
2015-08-03 15:19:36 -04:00
|
|
|
"html5",
|
|
|
|
"player",
|
2014-02-14 16:52:48 -08:00
|
|
|
"video",
|
2015-08-03 15:19:36 -04:00
|
|
|
"videojs"
|
2014-02-14 16:52:48 -08:00
|
|
|
],
|
2018-08-10 15:13:32 -04:00
|
|
|
"homepage": "https://videojs.com",
|
2013-01-11 23:02:20 -08:00
|
|
|
"author": "Steve Heffernan",
|
|
|
|
"scripts": {
|
2016-10-06 14:09:48 -04:00
|
|
|
"changelog": "conventional-changelog -p videojs -i CHANGELOG.md -s",
|
2016-08-24 16:44:58 -04:00
|
|
|
"build": "grunt dist",
|
2018-04-19 13:23:53 -04:00
|
|
|
"minify": "babel-node build/minify.js",
|
|
|
|
"rollup": "rollup -c",
|
|
|
|
"rollup-dev": "rollup -c -w",
|
2017-09-14 15:09:52 -04:00
|
|
|
"watch": "npm run rollup-dev",
|
2017-05-25 19:40:35 -04:00
|
|
|
"assets": "node build/assets.js",
|
2016-08-24 16:44:58 -04:00
|
|
|
"clean": "grunt clean",
|
2016-11-04 14:21:05 -04:00
|
|
|
"grunt": "grunt",
|
2016-07-25 09:49:38 -04:00
|
|
|
"lint": "vjsstandard",
|
2018-05-24 12:35:27 -04:00
|
|
|
"start": "npm-run-all -p start:grunt watch",
|
|
|
|
"start:grunt": "grunt dev",
|
2016-11-04 14:21:05 -04:00
|
|
|
"test": "grunt test",
|
2016-12-20 16:55:59 -05:00
|
|
|
"docs": "npm run docs:lint && npm run docs:api",
|
2017-01-24 11:26:39 -05:00
|
|
|
"jsdoc": "jsdoc",
|
2017-03-21 17:13:06 -04:00
|
|
|
"predocs:api": "node -e \"var s=require('shelljs'),d=['docs/api'];s.rm('-rf',d);\"",
|
2018-09-28 16:06:32 -04:00
|
|
|
"checktranslations": "grunt check-translations",
|
2017-01-24 11:26:39 -05:00
|
|
|
"docs:api": "jsdoc -c .jsdoc.json",
|
2017-03-21 17:13:06 -04:00
|
|
|
"postdocs:api": "node ./build/fix-api-docs.js",
|
2017-12-04 17:42:07 -05:00
|
|
|
"netlify": "babel-node ./build/netlify-docs.js",
|
2018-01-30 13:26:21 -05:00
|
|
|
"docs:lint": "remark -- './{,!(node_modules)/**/}!(CHANGELOG)*.md'",
|
|
|
|
"docs:fix": "remark --output -- './{,!(node_modules)/**/}!(CHANGELOG)*.md'",
|
2017-01-24 11:26:39 -05:00
|
|
|
"babel": "babel src/js -d es5",
|
2018-10-11 17:29:06 -04:00
|
|
|
"prepublishOnly": "run-p build",
|
2017-07-14 14:21:07 -04:00
|
|
|
"publish": "node build/gh-release.js",
|
2018-06-21 14:21:17 -04:00
|
|
|
"version": "node build/version.js && git add CHANGELOG.md",
|
|
|
|
"autoprefixer": "npm-run-all -p autoprefixer:*",
|
|
|
|
"autoprefixer:main": "postcss --verbose --config postcss.config.js -d build/temp build/temp/video-js.css",
|
|
|
|
"autoprefixer:cdn": "postcss --verbose --config postcss.config.js -d build/temp/alt build/temp/alt/video-js-cdn.css"
|
2013-01-11 23:02:20 -08:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2014-02-18 13:31:18 -08:00
|
|
|
"url": "https://github.com/videojs/video.js.git"
|
2013-01-11 23:02:20 -08:00
|
|
|
},
|
2014-01-23 15:44:52 -08:00
|
|
|
"dependencies": {
|
2018-10-11 16:53:25 -04:00
|
|
|
"@videojs/http-streaming": "1.3.0",
|
2016-08-17 17:16:41 -04:00
|
|
|
"babel-runtime": "^6.9.2",
|
2017-05-11 17:52:30 -04:00
|
|
|
"global": "4.3.2",
|
2016-06-01 14:30:44 -04:00
|
|
|
"safe-json-parse": "4.0.0",
|
2015-09-15 10:57:55 -07:00
|
|
|
"tsml": "1.0.1",
|
2018-10-09 16:50:31 -04:00
|
|
|
"videojs-font": "3.1.0",
|
2018-04-11 11:39:05 -04:00
|
|
|
"videojs-vtt.js": "0.14.1",
|
2017-03-02 14:52:02 -05:00
|
|
|
"xhr": "2.4.0"
|
2014-01-23 15:44:52 -08:00
|
|
|
},
|
2013-01-11 23:02:20 -08:00
|
|
|
"devDependencies": {
|
2017-01-11 14:56:07 -05:00
|
|
|
"aliasify": "^2.1.0",
|
2018-07-24 13:56:08 -04:00
|
|
|
"autoprefixer": "^9.0.1",
|
2016-08-17 17:16:41 -04:00
|
|
|
"babel-cli": "^6.11.4",
|
2017-05-25 19:40:35 -04:00
|
|
|
"babel-plugin-external-helpers": "^6.22.0",
|
2016-08-17 17:16:41 -04:00
|
|
|
"babel-plugin-transform-runtime": "^6.9.0",
|
2016-08-25 14:46:38 -04:00
|
|
|
"babel-preset-es2015": "^6.14.0",
|
2016-08-17 17:16:41 -04:00
|
|
|
"babel-register": "^6.9.0",
|
2017-10-24 14:16:47 -04:00
|
|
|
"babelify": "^8.0.0",
|
2018-01-30 11:18:04 -05:00
|
|
|
"bluebird": "^3.5.1",
|
2015-04-28 15:57:13 -07:00
|
|
|
"browserify-derequire": "^0.9.4",
|
2016-12-19 16:07:59 -05:00
|
|
|
"browserify-istanbul": "^2.0.0",
|
2016-09-29 11:58:37 -04:00
|
|
|
"bundle-collapser": "^1.2.1",
|
2017-05-25 19:40:35 -04:00
|
|
|
"cli-table": "^0.3.1",
|
2018-06-07 15:39:22 -04:00
|
|
|
"conventional-changelog-cli": "^2.0.1",
|
2016-10-06 14:09:48 -04:00
|
|
|
"conventional-changelog-videojs": "^3.0.0",
|
2018-01-30 11:18:04 -05:00
|
|
|
"es5-shim": "^4.5.10",
|
|
|
|
"es6-shim": "^0.35.3",
|
|
|
|
"filesize": "^3.5.11",
|
2018-09-05 18:05:30 -07:00
|
|
|
"gh-release": "^3.2.1",
|
|
|
|
"grunt": "^1.0.3",
|
2018-02-28 11:15:25 -05:00
|
|
|
"grunt-accessibility": "^6.0.0",
|
2016-12-19 16:07:59 -05:00
|
|
|
"grunt-banner": "^0.6.0",
|
2018-09-05 18:05:30 -07:00
|
|
|
"grunt-browserify": "^5.3.0",
|
2018-09-04 16:50:54 -07:00
|
|
|
"grunt-cli": "~1.3.1",
|
2016-08-18 00:08:24 +02:00
|
|
|
"grunt-concurrent": "^2.3.1",
|
2018-09-11 11:27:52 -04:00
|
|
|
"grunt-contrib-clean": "^2.0.0",
|
2016-12-19 16:07:59 -05:00
|
|
|
"grunt-contrib-concat": "^1.0.1",
|
2018-09-11 11:27:13 -04:00
|
|
|
"grunt-contrib-connect": "~2.0.0",
|
2016-12-19 16:07:59 -05:00
|
|
|
"grunt-contrib-copy": "^1.0.0",
|
2018-09-07 08:56:54 -07:00
|
|
|
"grunt-contrib-cssmin": "~3.0.0",
|
2018-06-06 17:50:18 -04:00
|
|
|
"grunt-contrib-watch": "~1.1.0",
|
2015-03-27 13:52:40 -07:00
|
|
|
"grunt-coveralls": "^1.0.0",
|
2018-09-12 11:14:36 -04:00
|
|
|
"grunt-karma": "^3.0.0",
|
2018-10-10 17:20:10 -04:00
|
|
|
"grunt-sass": "^3.0.2",
|
2016-09-29 18:03:27 +02:00
|
|
|
"grunt-shell": "^2.0.0",
|
2018-01-30 11:18:04 -05:00
|
|
|
"grunt-version": "^1.2.1",
|
2015-02-25 16:00:09 -08:00
|
|
|
"grunt-videojs-languages": "0.0.4",
|
2018-07-05 17:23:31 -04:00
|
|
|
"grunt-zip": "0.18.1",
|
2018-01-30 11:18:04 -05:00
|
|
|
"humanize-duration": "^3.12.1",
|
2018-09-28 16:06:06 -04:00
|
|
|
"husky": "^1.0.1",
|
2016-12-19 16:07:59 -05:00
|
|
|
"istanbul": "^0.4.5",
|
2016-12-02 15:07:19 -05:00
|
|
|
"jsdoc": "^3.4.2",
|
2018-08-10 16:24:03 -04:00
|
|
|
"karma": "^3.0.0",
|
2018-09-05 18:05:30 -07:00
|
|
|
"karma-browserify": "^5.3.0",
|
2016-08-12 00:03:19 +02:00
|
|
|
"karma-browserstack-launcher": "^1.0.1",
|
2016-08-22 23:56:10 +02:00
|
|
|
"karma-chrome-launcher": "^2.0.0",
|
2018-09-05 18:05:30 -07:00
|
|
|
"karma-coverage": "^1.1.2",
|
2018-01-30 11:18:04 -05:00
|
|
|
"karma-detect-browsers": "^2.2.6",
|
|
|
|
"karma-firefox-launcher": "^1.1.0",
|
2016-08-12 00:03:19 +02:00
|
|
|
"karma-ie-launcher": "^1.0.0",
|
|
|
|
"karma-opera-launcher": "^1.0.0",
|
2018-03-26 10:40:59 -04:00
|
|
|
"karma-qunit": "^2.0.1",
|
2016-08-12 00:03:19 +02:00
|
|
|
"karma-safari-launcher": "^1.0.0",
|
2018-01-30 11:18:04 -05:00
|
|
|
"karma-safaritechpreview-launcher": "0.0.6",
|
2016-08-12 00:03:19 +02:00
|
|
|
"karma-sinon": "^1.0.5",
|
2018-09-28 15:05:56 -04:00
|
|
|
"klaw-sync": "^6.0.0",
|
2018-05-07 14:15:07 -04:00
|
|
|
"load-grunt-tasks": "^4.0.0",
|
2018-09-05 18:05:30 -07:00
|
|
|
"lodash": "^4.17.10",
|
2016-08-25 15:49:40 -04:00
|
|
|
"markdown-table": "^1.0.0",
|
2018-04-19 13:23:53 -04:00
|
|
|
"maxmin": "^2.1.0",
|
2017-05-25 19:40:35 -04:00
|
|
|
"minimist": "^1.2.0",
|
2018-10-10 17:20:10 -04:00
|
|
|
"node-sass": "^4.9.3",
|
2018-01-30 11:18:04 -05:00
|
|
|
"npm-run-all": "^4.1.2",
|
2018-07-24 15:34:37 -04:00
|
|
|
"postcss-cli": "^6.0.0",
|
2015-09-24 19:58:25 -04:00
|
|
|
"proxyquireify": "^3.0.0",
|
2018-09-05 18:05:30 -07:00
|
|
|
"qunit": "^2.6.1",
|
2018-01-23 14:58:59 -05:00
|
|
|
"remark-cli": "^5.0.0",
|
2017-03-02 12:00:32 -05:00
|
|
|
"remark-lint": "^6.0.0",
|
2018-01-23 15:00:55 -05:00
|
|
|
"remark-parse": "^5.0.0",
|
2018-01-23 14:59:17 -05:00
|
|
|
"remark-stringify": "^5.0.0",
|
2017-12-14 17:33:39 -05:00
|
|
|
"remark-toc": "^5.0.0",
|
2017-09-19 17:21:39 -04:00
|
|
|
"remark-validate-links": "^7.0.0",
|
2017-03-21 17:13:06 -04:00
|
|
|
"replace": "^0.3.0",
|
2018-09-28 16:06:21 -04:00
|
|
|
"rollup": "^0.66.2",
|
2018-03-30 14:01:16 -04:00
|
|
|
"rollup-plugin-alias": "^1.4.0",
|
2018-04-19 13:23:53 -04:00
|
|
|
"rollup-plugin-babel": "^3.0.3",
|
|
|
|
"rollup-plugin-commonjs": "^9.1.0",
|
2018-07-24 13:56:41 -04:00
|
|
|
"rollup-plugin-filesize": "^4.0.1",
|
2017-05-25 19:40:35 -04:00
|
|
|
"rollup-plugin-ignore": "^1.0.3",
|
2018-05-11 14:27:32 -04:00
|
|
|
"rollup-plugin-json": "^3.0.0",
|
2018-04-19 13:23:53 -04:00
|
|
|
"rollup-plugin-node-resolve": "^3.3.0",
|
|
|
|
"rollup-plugin-progress": "^0.4.0",
|
2018-01-24 13:47:07 -05:00
|
|
|
"semver": "^5.5.0",
|
2018-01-23 15:02:08 -05:00
|
|
|
"shelljs": "^0.8.1",
|
2015-08-24 17:46:54 -07:00
|
|
|
"sinon": "^1.16.1",
|
2015-04-29 14:36:20 -07:00
|
|
|
"time-grunt": "^1.1.1",
|
2017-01-24 11:26:39 -05:00
|
|
|
"tui-jsdoc-template": "^1.1.0",
|
2018-04-19 13:23:53 -04:00
|
|
|
"uglify-js": "^3.3.21",
|
2018-05-11 14:12:48 -04:00
|
|
|
"unified": "^7.0.0",
|
2018-01-30 11:18:04 -05:00
|
|
|
"videojs-flash": "^2.1.0",
|
2018-09-28 14:58:15 -04:00
|
|
|
"videojs-standard": "^8.0.2",
|
2017-05-25 19:40:35 -04:00
|
|
|
"webpack": "^1.15.0"
|
2015-05-01 12:48:28 -07:00
|
|
|
},
|
2016-07-25 09:49:38 -04:00
|
|
|
"vjsstandard": {
|
2015-05-01 12:48:28 -07:00
|
|
|
"ignore": [
|
2015-08-03 15:19:36 -04:00
|
|
|
"**/Gruntfile.js",
|
2016-08-17 17:16:41 -04:00
|
|
|
"**/es5/**",
|
2015-05-01 12:48:28 -07:00
|
|
|
"**/build/**",
|
2017-05-25 19:40:35 -04:00
|
|
|
"!build/rollup.js",
|
2018-03-30 14:01:16 -04:00
|
|
|
"core.js",
|
2015-05-01 12:48:28 -07:00
|
|
|
"**/dist/**",
|
|
|
|
"**/docs/**",
|
|
|
|
"**/lang/**",
|
|
|
|
"**/sandbox/**",
|
2016-07-25 09:49:38 -04:00
|
|
|
"**/test/api/**",
|
|
|
|
"**/test/coverage/**",
|
|
|
|
"**/test/karma.conf.js"
|
2015-05-01 12:48:28 -07:00
|
|
|
]
|
2017-03-30 13:46:41 -04:00
|
|
|
},
|
|
|
|
"greenkeeper": {
|
|
|
|
"ignore": [
|
2017-07-26 13:29:39 -04:00
|
|
|
"sinon",
|
2018-04-19 13:23:53 -04:00
|
|
|
"webpack"
|
2017-03-30 13:46:41 -04:00
|
|
|
]
|
2018-09-28 16:06:06 -04:00
|
|
|
},
|
|
|
|
"husky": {
|
|
|
|
"hooks": {
|
|
|
|
"pre-push": "npm run lint -- --errors"
|
|
|
|
}
|
2013-01-11 23:02:20 -08:00
|
|
|
}
|
|
|
|
}
|