{
  "name": "videojs-theater-mode",
  "version": "1.0.0",
  "description": "Adds a class the video.js container that can be used to put your video into \"theater mode\"",
  "main": "dist/videojs-theater-mode.cjs.js",
  "module": "dist/videojs-theater-mode.es.js",
  "generator-videojs-plugin": {
    "version": "5.0.0"
  },
  "scripts": {
    "build": "npm run clean; npm run sass; npm run build-dist; cp -r fonts dist/",
    "sass": "mkdir -p dist/ && ./node_modules/.bin/node-sass --output-style compact ./src/videojs.theaterMode.scss dist/videojs.theaterMode.css",
    "build-dist": "mkdir -p dist/ && ./node_modules/.bin/browserify ./src/videojs.theaterMode.js -o dist/videojs.theaterMode.js",
    "clean": "rm -rf dist/"
  },
  "keywords": [
    "videojs",
    "videojs-plugin",
    "theater mode"
  ],
  "author": "Jon <jon@jgubman.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/jgubman/videojs-theater-mode"
  },
  "vjsstandard": {
    "ignore": [
      "dist",
      "docs",
      "test/dist",
      "test/karma.conf.js"
    ]
  },
  "files": [
    "CONTRIBUTING.md",
    "dist/",
    "docs/",
    "fonts/",
    "index.html",
    "scripts/",
    "src/",
    "test/"
  ],
  "dependencies": {
    "global": "^4.3.2",
    "video.js": "^5.2.1"
  },
  "devDependencies": {
    "babelify": "^6.3.0",
    "browserify": "^11.1.0",
    "browserify-shim": "^3.8.10",
    "node-sass": "^3.4.2"
  },
  "browserify": {
    "transform": [
      "babelify",
      "browserify-shim"
    ]
  },
  "browserify-shim": {
    "video.js": "global:videojs"
  }
}
