ravnur-player-public 3.4.5 → 3.4.6
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/package.json
CHANGED
|
@@ -1,74 +1,74 @@
|
|
|
1
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
|
-
|
|
2
|
+
"name": "ravnur-player-public",
|
|
3
|
+
"version": "3.4.6",
|
|
4
|
+
"description": "Ravnur Video Player",
|
|
5
|
+
"main": "dist/RavnurMediaPlayer.min.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "cross-env NODE_ENV=production webpack --mode production",
|
|
8
|
+
"serve": "cross-env NODE_ENV=development webpack serve --mode development",
|
|
9
|
+
"lint": "eslint src/**/*.js",
|
|
10
|
+
"test": "jest test/* --silent"
|
|
11
|
+
},
|
|
12
|
+
"license": "Apache-2.0",
|
|
13
|
+
"publishConfig": {
|
|
14
|
+
"registry": "https://registry.npmjs.org"
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"README.md"
|
|
19
|
+
],
|
|
20
|
+
"devDependencies": {
|
|
21
|
+
"@avalanche/eslint-config": "^2.0.0",
|
|
22
|
+
"@avalanche/stylelint-config": "^0.1.2",
|
|
23
|
+
"@babel/core": "^7.2.2",
|
|
24
|
+
"@babel/plugin-proposal-class-properties": "^7.2.3",
|
|
25
|
+
"@babel/plugin-proposal-decorators": "^7.2.3",
|
|
26
|
+
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
|
|
27
|
+
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
|
|
28
|
+
"@babel/preset-env": "^7.18.6",
|
|
29
|
+
"@babel/preset-flow": "^7.0.0",
|
|
30
|
+
"@mapbox/stylelint-processor-arbitrary-tags": "^0.2.0",
|
|
31
|
+
"babel-eslint": "^10.0.1",
|
|
32
|
+
"babel-jest": "^28.1.2",
|
|
33
|
+
"babel-loader": "^8.0.4",
|
|
34
|
+
"compression": "^1.7.3",
|
|
35
|
+
"cross-env": "^5.2.0",
|
|
36
|
+
"eslint": "^7.32.0",
|
|
37
|
+
"eslint-config-standard": "^16.0.3",
|
|
38
|
+
"eslint-plugin-import": "^2.25.3",
|
|
39
|
+
"eslint-plugin-jest": "^26.5.3",
|
|
40
|
+
"eslint-plugin-node": "^11.1.0",
|
|
41
|
+
"eslint-plugin-promise": "^5.2.0",
|
|
42
|
+
"eslint-plugin-vue": "^9.9.0",
|
|
43
|
+
"express": "^4.16.4",
|
|
44
|
+
"flow-bin": "^0.168.0",
|
|
45
|
+
"html-webpack-plugin": "^3.2.0",
|
|
46
|
+
"jest": "^28.1.2",
|
|
47
|
+
"jest-environment-jsdom": "^28.1.2",
|
|
48
|
+
"jest-junit": "^12.0.0",
|
|
49
|
+
"opn": "^5.4.0",
|
|
50
|
+
"stylelint": "^9.9.0",
|
|
51
|
+
"uglifyjs-webpack-plugin": "^2.1.0",
|
|
52
|
+
"webpack": "^5.65.0",
|
|
53
|
+
"webpack-cli": "^4.9.1",
|
|
54
|
+
"webpack-dev-server": "^4.6.0"
|
|
55
|
+
},
|
|
56
|
+
"dependencies": {
|
|
57
|
+
"assert": "^2.0.0",
|
|
58
|
+
"bitparser": "^0.1.1",
|
|
59
|
+
"bitwise": "^2.1.0",
|
|
60
|
+
"buffer": "^6.0.3",
|
|
61
|
+
"cbor": "^8.1.0",
|
|
62
|
+
"chalk": "^4.1.2",
|
|
63
|
+
"commander": "^8.2.0",
|
|
64
|
+
"constants-browserify": "^1.0.0",
|
|
65
|
+
"hexy": "^0.3.2",
|
|
66
|
+
"intobuffer": "^0.1.2",
|
|
67
|
+
"lodash": "^4.17.21",
|
|
68
|
+
"mime-types": "^2.1.32",
|
|
69
|
+
"node-inspect-extracted": "^1.0.8",
|
|
70
|
+
"pkijs": "^2.2.1",
|
|
71
|
+
"process": "^0.11.10",
|
|
72
|
+
"stream-browserify": "^3.0.0"
|
|
73
|
+
}
|
|
74
74
|
}
|