forked from openplayerjs/openplayerjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 2.92 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
{
"name": "openplayerjs",
"version": "1.16.6",
"homepage": "https://www.openplayerjs.com/",
"author": {
"name": "Rafael Miranda",
"email": "[email protected]"
},
"license": "MIT",
"description": "HTML5 video and audio player",
"repository": {
"url": "https://github.com/openplayerjs/openplayerjs.git",
"type": "git"
},
"main": "./dist/openplayer.js",
"style": "./dist/openplayer.css",
"types": "./openplayer.d.ts",
"files": [
"demo/*",
"dist/*",
"docs/*",
"openplayer.d.ts"
],
"keywords": [
"media",
"video",
"audio",
"hls",
"dash",
"mp4",
"mp3",
"openplayer",
"openplayerjs",
"vast",
"vpaid",
"player",
"video-player",
"audio-player",
"html5-media",
"hlsjs",
"ima-sdk"
],
"scripts": {
"build": "[ -d ./dist ] && rm -R ./dist; webpack --mode=production",
"release": "npm run build && npm run docs && release-it",
"test": "karma start --single-run --browsers ChromeHeadless karma.conf.js",
"docs": "[ -d ./docs ] && rm -R ./docs; typedoc --out ./docs --mode modules --tsconfig ./tsconfig.json ./src/js/"
},
"readme": "https://github.com/openplayerjs/openplayerjs/blob/master/README.md",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@release-it/conventional-changelog": "^1.1.0",
"autoprefixer": "^9.7.4",
"babel-core": "^6.26.3",
"babel-loader": "^8.1.0",
"babel-preset-env": "^1.7.0",
"babel-preset-minify": "^0.5.1",
"babili-webpack-plugin": "^0.1.2",
"chai": "^4.2.0",
"conventional-changelog": "^3.1.18",
"coveralls": "^3.0.11",
"css-loader": "^3.4.2",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^5.1.0",
"karma": "^4.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^7.1.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss": "^7.0.27",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"release-it": "^12.6.3",
"standard-version": "^7.1.0",
"style-loader": "^1.1.3",
"stylelint": "^13.2.1",
"stylelint-order": "^4.0.0",
"ts-loader": "^5.4.5",
"tslint": "^5.20.1",
"typedoc": "^0.16.11",
"typescript": "^3.8.3",
"unminified-webpack-plugin": "^2.0.0",
"url-loader": "^3.0.0",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"auto-changelog": "^1.16.4",
"core-js": "^3.6.5",
"custom-event-polyfill": "^1.0.7",
"element-closest": "^3.0.2",
"global": "^4.4.0"
}
}