UNPKG

moovie

Version:

An advanced HTML5 video player for MooTools.

112 lines (111 loc) 3.5 kB
{ "name": "moovie", "version": "0.15.0", "description": "An advanced HTML5 video player for MooTools.", "main": "dist/moovie.js", "browser": "dist/moovie.js", "files": [ "bower_components/mootools/dist/mootools-core.js", "bower_components/mootools/dist/mootools-core.min.js", "dist", "bower.json" ], "devDependencies": { "autoprefixer": "7.1.4", "babel-plugin-transform-runtime": "6.23.0", "babel-preset-env": "1.6.0", "babelify": "7.3.0", "bower": "1.8.2", "browserify": "14.4.0", "browserify-istanbul": "^2.0.0", "cpy-cli": "^1.0.1", "eslint": "4.7.2", "eslint-plugin-mootools": "^1.1.0", "expectations": "0.7.1", "isparta": "^4.0.0", "karma": "1.7.1", "karma-browserify": "^5.1.0", "karma-chrome-launcher": "2.2.0", "karma-coverage": "1.1.1", "karma-detect-browsers": "^2.1.0", "karma-edge-launcher": "0.4.2", "karma-firefox-launcher": "^1.0.0", "karma-ie-launcher": "^1.0.0", "karma-mocha": "1.3.0", "karma-mocha-reporter": "^2.0.4", "karma-opera-launcher": "^1.0.0", "karma-safari-launcher": "^1.0.0", "mkdirp": "^0.5.1", "mocha": "3.5.3", "node-sass": "^4.5.3", "npm-run-all": "4.1.1", "postcss-cli": "4.1.1", "pre-commit": "1.2.2", "rimraf": "^2.5.4", "semantic-release": "^11.0.2", "sinon": "4.0.0", "uglify-js": "3.1.2", "uglifycss": "0.0.27", "watchify": "^3.7.0" }, "dependencies": { "babel-runtime": "6.26.0", "emune": "^1.0.0", "event-target-shim": "2.0.0", "fullscreen-api-polyfill": "^1.1.2", "vtt.js": "0.13.0" }, "scripts": { "clean": "rimraf dist && mkdirp dist", "copy-images": "cpy **/*.png ../dist/ --cwd=src --parents", "postinstall": "bower install", "lint": "eslint **/*.js --color", "lint:fix": "eslint **/*.js --fix --color", "pretest": "npm run lint", "test": "karma start tests/karma.conf.js", "posttest": "echo generating test coverage...", "compile": "node-sass src/scss/main.scss dist/moovie.css --output-style=expanded --linefeed=lf", "postcompile": "postcss --use autoprefixer -r dist/moovie.css", "prebuild": "npm run clean", "build": "browserify src/js/index.js -s Moovie -o dist/moovie.js && npm run compile && npm run copy-images", "postbuild": "npm run minify", "prepublish": "npm run build", "semantic-release": "semantic-release", "watch": "npm-run-all -p watch:*", "watch:scss": "npm run compile -- -wr", "watch:js": "watchify src/js/index.js -s Moovie -o dist/moovie.js --verbose", "watch:tests": "karma start tests/karma.conf.js --auto-watch --no-single-run", "minify": "npm-run-all -p minify:*", "minify:css": "uglifycss dist/moovie.css > dist/moovie.min.css", "minify:js": "uglifyjs dist/moovie.js > dist/moovie.min.js" }, "repository": { "type": "git", "url": "https://github.com/moovie/moovie.git" }, "keywords": [ "html5", "mootools", "playlist", "subtitles" ], "author": "Colin Aarts <colin@colinaarts.com> (http://colinaarts.com)", "contributors": [ "Nathan Bishop <nbish11@hotmail.com> (https://nathanbishop.name)" ], "license": "MIT", "bugs": { "url": "https://github.com/moovie/moovie/issues" }, "homepage": "https://github.com/moovie/moovie#readme", "browserify": { "debug": true, "transform": [ "babelify" ] }, "engines": { "node": ">=6.0.0", "npm": ">=3.0.0" } }