UNPKG

4.52 kBJSONView Raw
1{
2 "name": "@videojs/http-streaming",
3 "version": "1.13.4",
4 "description": "Play back HLS and DASH with Video.js, even where it's not natively supported",
5 "main": "dist/videojs-http-streaming.cjs.js",
6 "module": "dist/videojs-http-streaming.es.js",
7 "repository": {
8 "type": "git",
9 "url": "git@github.com:videojs/http-streaming.git"
10 },
11 "scripts": {
12 "prenetlify": "npm run build",
13 "netlify": "node scripts/netlify.js",
14 "prebuild": "npm run clean",
15 "build": "run-s build:webworker build:js",
16 "build:js": "rollup -c scripts/rollup.config.js",
17 "build:webworker": "rollup -c scripts/webworker.rollup.config.js",
18 "clean": "run-p clean:dist clean:test",
19 "clean:dist": "rimraf dist dist-test",
20 "clean:test": "node scripts/clean-tests.js",
21 "postclean": "mkdirp dist",
22 "docs": "run-p docs:*",
23 "docs:api": "jsdoc src -r -d docs/api",
24 "docs:toc": "doctoc README.md",
25 "docs:nomnoml:build": "node -e \"var b=require('./scripts/nomnoml.js'); b.build();\"",
26 "lint": "vjsstandard | grep -v \"maximum\\|todo\\|loop\"",
27 "prestart": "npm run build",
28 "start": "run-p start:server watch",
29 "start:server": "node scripts/server.js",
30 "pretest": "run-s lint build:test:js",
31 "test": "karma start test/karma.conf.js",
32 "prebuild:test:js": "run-s build:webworker build:test:manifest build:test:segments",
33 "build:test:js": "rollup -c scripts/test.rollup.config.js",
34 "build:test:manifest": "node -e \"var b=require('./scripts/manifest-data.js'); b.build();\"",
35 "build:test:segments": "node -e \"var b=require('./scripts/segments-data.js'); b.build();\"",
36 "watch": "run-p watch:js watch:test:manifest watch:test:segments watch:test:js watch:js:switcher watch:js-webworker",
37 "watch:js": "rollup -c scripts/rollup.config.js -w",
38 "watch:js:switcher": "rollup -c scripts/switcher.rollup.config.js -w",
39 "watch:test:js": "rollup -c scripts/test.rollup.config.js -w",
40 "watch:test:manifest": "node -e \"var b=require('./scripts/manifest-data.js'); b.watch();\"",
41 "watch:test:segments": "node -e \"var b=require('./scripts/segments-data.js'); b.watch();\"",
42 "watch:js-webworker": "rollup -c scripts/webworker.rollup.config.js -w",
43 "preversion": "npm test",
44 "version": "node scripts/version.js",
45 "prepublish": "in-publish && npm run build || not-in-publish"
46 },
47 "keywords": [
48 "videojs",
49 "videojs-plugin"
50 ],
51 "author": "Brightcove, Inc",
52 "license": "Apache-2.0",
53 "vjsstandard": {
54 "ignore": [
55 "es5",
56 "dist",
57 "dist-test",
58 "docs",
59 "test/karma.conf.js",
60 "scripts",
61 "utils",
62 "test/test-manifests.js",
63 "test/test-segments.js",
64 "*.worker.*"
65 ]
66 },
67 "files": [
68 "dist/"
69 ],
70 "dependencies": {
71 "aes-decrypter": "3.0.2",
72 "global": "^4.3.0",
73 "m3u8-parser": "4.4.0",
74 "mpd-parser": "0.10.0",
75 "mux.js": "5.6.1",
76 "url-toolkit": "^2.1.3",
77 "video.js": "^6.8.0 || ^7.0.0"
78 },
79 "devDependencies": {
80 "@gkatsev/rollup-plugin-bundle-worker": "^1.0.2",
81 "babel-core": "^6.26.0",
82 "babel-plugin-external-helpers": "^6.22.0",
83 "babel-preset-env": "^1.6.1",
84 "chg": "^0.3.3",
85 "connect": "^3.6.6",
86 "conventional-changelog-cli": "^1.3.20",
87 "conventional-changelog-videojs": "^3.0.0",
88 "cowsay": "^1.3.0",
89 "d3": "^3.4.8",
90 "doctoc": "^0.15.0",
91 "in-publish": "^2.0.0",
92 "jsdoc": "^3.4.0",
93 "karma": "^1.7.1",
94 "karma-browserstack-launcher": "~1.4.0",
95 "karma-chrome-launcher": "^2.2.0",
96 "karma-coverage": "^1.1.1",
97 "karma-detect-browsers": "^2.2.6",
98 "karma-firefox-launcher": "^1.1.0",
99 "karma-qunit": "^1.2.1",
100 "karma-safari-launcher": "^1.0.0",
101 "karma-safaritechpreview-launcher": "0.0.6",
102 "karma-spec-reporter": "0.0.32",
103 "lodash": "^4.17.4",
104 "lodash-compat": "^3.10.0",
105 "nomnoml": "^0.3.0",
106 "npm-run-all": "^4.1.5",
107 "portscanner": "^2.1.1",
108 "qunitjs": "^2.0.1",
109 "rollup": "^0.57.1",
110 "rollup-plugin-babel": "^3.0.3",
111 "rollup-plugin-commonjs": "^9.1.0",
112 "rollup-plugin-json": "^2.3.0",
113 "rollup-plugin-multi-entry": "^2.0.2",
114 "rollup-plugin-node-resolve": "^3.3.0",
115 "rollup-plugin-uglify": "^3.0.0",
116 "rollup-watch": "^4.3.1",
117 "semver": "^5.5.0",
118 "serve-static": "^1.13.2",
119 "shelljs": "^0.8.2",
120 "sinon": "~1.10.3",
121 "uglify-es": "^3.3.9",
122 "videojs-contrib-eme": "^3.2.0",
123 "videojs-contrib-quality-levels": "^2.0.4",
124 "videojs-standard": "^4.0.3"
125 }
126}