package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "author": "Andreas Gal <gal@mozilla.com>",
  3. "contributors": [
  4. "Gary Katsevman <me@gkatsev.com>"
  5. ],
  6. "name": "videojs-vtt.js",
  7. "description": "A JavaScript implementation of the WebVTT specification, forked from vtt.js for use with Video.js",
  8. "version": "0.15.4",
  9. "main": "lib/browser-index.js",
  10. "repository": {
  11. "type": "git",
  12. "url": "https://github.com/videojs/vtt.js.git"
  13. },
  14. "homepage": "https://github.com/videojs/vtt.js",
  15. "devDependencies": {
  16. "async": "0.9.0",
  17. "browserify": "^14.3.0",
  18. "deumdify": "^1.2.4",
  19. "difflet": "git://github.com/humphd/difflet.git#714b82706ad39d75275a886aeff637df5097626f",
  20. "dive": "0.3.1",
  21. "grunt": "0.4.1",
  22. "grunt-bump": "0.0.14",
  23. "grunt-cli": "0.1.9",
  24. "grunt-contrib-concat": "0.4.0",
  25. "grunt-contrib-jshint": "0.10.0",
  26. "grunt-contrib-uglify": "0.5.0",
  27. "grunt-mocha-test": "0.11.0",
  28. "json-stable-stringify": "1.0.0",
  29. "mocha": "1.20.1",
  30. "node-vtt": "1.1.7",
  31. "optimist": "0.6.1",
  32. "text-encoding": "0.1.0",
  33. "underscore": "1.6.0",
  34. "watchify": "^3.9.0"
  35. },
  36. "files": [
  37. "dist/",
  38. "lib/browser.js",
  39. "lib/index.js",
  40. "lib/vtt.js",
  41. "lib/vttcue.js",
  42. "lib/vttcue-extended.js",
  43. "lib/vttregion.js",
  44. "lib/vttregion-extended.js"
  45. ],
  46. "keywords": [
  47. "vtt",
  48. "webvtt",
  49. "track",
  50. "captions",
  51. "subtitles",
  52. "text track"
  53. ],
  54. "scripts": {
  55. "build": "npm run build-umd && npm run build-global",
  56. "build-umd": "browserify -s vttjs . -o dist/vtt.js",
  57. "build-global": "browserify -s vttjs -p deumdify . -o dist/vtt.global.js",
  58. "postbuild": "npm run minify",
  59. "minify": "grunt uglify:dist uglify:global",
  60. "test": "grunt",
  61. "prepublishOnly": "npm run build"
  62. },
  63. "license": "Apache-2.0",
  64. "dependencies": {
  65. "global": "^4.3.1"
  66. }
  67. }