UNPKG

3.37 kBJSONView Raw
1{
2 "name": "@videojs/http-streaming",
3 "version": "2.16.0",
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 "build-test": "cross-env-shell TEST_BUNDLE_ONLY=1 'npm run build'",
15 "build-prod": "cross-env-shell NO_TEST_BUNDLE=1 'npm run build'",
16 "build": "npm-run-all -s clean -p build:*",
17 "build:js": "rollup -c scripts/rollup.config.js",
18 "docs": "npm-run-all docs:*",
19 "docs:api": "jsdoc src -g plugins/markdown -r -d docs/api",
20 "docs:toc": "doctoc --notitle README.md",
21 "docs:images": "node ./scripts/create-docs-images.js",
22 "clean": "shx rm -rf ./dist ./test/dist && shx mkdir -p ./dist ./test/dist",
23 "lint": "vjsstandard",
24 "prepublishOnly": "npm-run-all build-prod && vjsverify --verbose",
25 "start": "npm-run-all -p server watch",
26 "server": "karma start scripts/karma.conf.js --singleRun=false --auto-watch",
27 "test": "npm-run-all lint build-test && karma start scripts/karma.conf.js",
28 "posttest": "[ \"$CI_TEST_TYPE\" != 'coverage' ] || shx cat test/dist/coverage/text.txt",
29 "version": "vjs-update-changelog --add --run-on-prerelease",
30 "watch": "npm-run-all -p watch:*",
31 "watch:js": "npm run build:js -- -w"
32 },
33 "keywords": [
34 "videojs",
35 "videojs-plugin"
36 ],
37 "author": "Brightcove, Inc",
38 "license": "Apache-2.0",
39 "vjsstandard": {
40 "ignore": [
41 "dist",
42 "docs",
43 "deploy",
44 "test/dist",
45 "utils",
46 "src/*.worker.js"
47 ]
48 },
49 "files": [
50 "CONTRIBUTING.md",
51 "dist/",
52 "docs/",
53 "index.html",
54 "scripts/",
55 "src/"
56 ],
57 "dependencies": {
58 "@babel/runtime": "^7.12.5",
59 "@videojs/vhs-utils": "3.0.5",
60 "aes-decrypter": "3.1.3",
61 "global": "^4.4.0",
62 "m3u8-parser": "4.8.0",
63 "mpd-parser": "^0.22.1",
64 "mux.js": "6.0.1",
65 "video.js": "^6 || ^7"
66 },
67 "peerDependencies": {
68 "video.js": "^6 || ^7"
69 },
70 "devDependencies": {
71 "@rollup/plugin-replace": "^2.3.4",
72 "@rollup/plugin-strip": "^2.0.1",
73 "@videojs/generator-helpers": "~3.1.0",
74 "bootstrap": "^5.1.0",
75 "d3": "^3.4.8",
76 "es5-shim": "^4.5.13",
77 "es6-shim": "^0.35.5",
78 "jsdoc": "~3.6.6",
79 "karma": "^5.2.3",
80 "lodash": "^4.17.4",
81 "lodash-compat": "^3.10.0",
82 "nomnoml": "^0.3.0",
83 "rollup": "^2.36.1",
84 "rollup-plugin-worker-factory": "0.5.7",
85 "shelljs": "^0.8.4",
86 "sinon": "^8.1.1",
87 "url-toolkit": "^2.2.1",
88 "videojs-contrib-eme": "^3.8.1",
89 "videojs-contrib-quality-levels": "^2.0.4",
90 "videojs-generate-karma-config": "^7.1.0",
91 "videojs-generate-rollup-config": "^6.2.2",
92 "videojs-generator-verify": "~3.0.1",
93 "videojs-http-source-selector": "^1.1.6",
94 "videojs-standard": "^9.0.0"
95 },
96 "generator-videojs-plugin": {
97 "version": "7.6.3"
98 },
99 "browserslist": [
100 "defaults",
101 "ie 11"
102 ],
103 "engines": {
104 "node": ">=8",
105 "npm": ">=5"
106 },
107 "husky": {
108 "hooks": {
109 "pre-commit": "lint-staged"
110 }
111 },
112 "lint-staged": {
113 "*.js": "vjsstandard --fix",
114 "README.md": "doctoc --notitle"
115 }
116}