UNPKG

3.4 kBJSONView Raw
1{
2 "name": "@videojs/http-streaming",
3 "version": "2.7.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": "is-prerelease || npm run update-changelog && git add CHANGELOG.md",
30 "update-changelog": "conventional-changelog -p videojs -i CHANGELOG.md -s",
31 "watch": "npm-run-all -p watch:*",
32 "watch:js": "npm run build:js -- -w"
33 },
34 "keywords": [
35 "videojs",
36 "videojs-plugin"
37 ],
38 "author": "Brightcove, Inc",
39 "license": "Apache-2.0",
40 "vjsstandard": {
41 "ignore": [
42 "dist",
43 "docs",
44 "deploy",
45 "test/dist",
46 "utils",
47 "src/*.worker.js"
48 ]
49 },
50 "files": [
51 "CONTRIBUTING.md",
52 "dist/",
53 "docs/",
54 "index.html",
55 "scripts/",
56 "src/"
57 ],
58 "dependencies": {
59 "@babel/runtime": "^7.12.5",
60 "@videojs/vhs-utils": "^3.0.0",
61 "aes-decrypter": "3.1.2",
62 "global": "^4.4.0",
63 "m3u8-parser": "4.6.0",
64 "mpd-parser": "0.16.0",
65 "mux.js": "5.11.0",
66 "video.js": "^6 || ^7"
67 },
68 "peerDependencies": {
69 "video.js": "^6 || ^7"
70 },
71 "devDependencies": {
72 "@rollup/plugin-replace": "^2.3.4",
73 "@videojs/generator-helpers": "~2.0.1",
74 "d3": "^3.4.8",
75 "es5-shim": "^4.5.13",
76 "es6-shim": "^0.35.5",
77 "jsdoc": "~3.6.6",
78 "karma": "^5.2.3",
79 "lodash": "^4.17.4",
80 "lodash-compat": "^3.10.0",
81 "nomnoml": "^0.3.0",
82 "rollup": "^2.36.1",
83 "rollup-plugin-worker-factory": "0.5.4",
84 "shelljs": "^0.8.4",
85 "sinon": "^8.1.1",
86 "url-toolkit": "^2.2.1",
87 "videojs-contrib-eme": "^3.8.0",
88 "videojs-contrib-quality-levels": "^2.0.4",
89 "videojs-generate-karma-config": "^7.1.0",
90 "videojs-generate-rollup-config": "~6.1.0",
91 "videojs-generator-verify": "~3.0.1",
92 "videojs-http-source-selector": "^1.1.6",
93 "videojs-standard": "^8.0.4"
94 },
95 "generator-videojs-plugin": {
96 "version": "7.6.3"
97 },
98 "browserslist": [
99 "defaults",
100 "ie 11"
101 ],
102 "engines": {
103 "node": ">=8",
104 "npm": ">=5"
105 },
106 "husky": {
107 "hooks": {
108 "pre-commit": "lint-staged"
109 }
110 },
111 "lint-staged": {
112 "*.js": "vjsstandard --fix",
113 "README.md": "doctoc --notitle"
114 }
115}