@jeraldj/sunbird-video-player-web-component 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +856 -0
- package/assets/video-player/package.json +18 -0
- package/assets/video-player/styles.css +13 -0
- package/assets/video-player/sunbird-video-player.js +1055 -0
- package/package.json +18 -0
package/package.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@jeraldj/sunbird-video-player-web-component",
|
|
3
|
+
"version": "2.0.0",
|
|
4
|
+
"description": "The web component package for the sunbird video player",
|
|
5
|
+
"main": "assets/video-player/sunbird-video-player.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
+
},
|
|
9
|
+
"homepage": "https://github.com/Sunbird-Knowlg/sunbird-video-player/blob/release-5.5.0/README.md",
|
|
10
|
+
"keywords": [
|
|
11
|
+
"sunbird",
|
|
12
|
+
"video",
|
|
13
|
+
"player",
|
|
14
|
+
"web-component"
|
|
15
|
+
],
|
|
16
|
+
"author": "sunbird",
|
|
17
|
+
"license": "MIT"
|
|
18
|
+
}
|