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