forked from nextcloud/files_videoplayer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.22 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
{
"name": "files_videoplayer",
"version": "0.1.0",
"description": "A responsive video player for Nextcloud using a skinned version of Video.js.",
"private": true,
"dependencies": {
"video.js": "^7.4.1",
"videojs-hotkeys": "^0.2.25"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"@vue/babel-preset-app": "^3.4.1",
"babel-loader": "^8.0.5",
"css-loader": "^2.1.0",
"file-loader": "^3.0.1",
"style-loader": "^0.23.1",
"url-loader": "^1.1.2",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-merge": "^4.2.1"
},
"scripts": {
"build": "webpack --progress --config src/webpack.prod.js",
"watch": "webpack --progress --watch --config src/webpack.dev.js"
},
"browserslist": [
"last 2 versions",
"ie >= 11"
],
"jshintConfig": {
"esversion": 6
},
"repository": {
"type": "git",
"url": "git+https://github.com/nextcloud/files_videoplayer.git"
},
"author": "Christoph Wurst",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/nextcloud/files_videoplayer/issues"
},
"homepage": "https://github.com/nextcloud/files_videoplayer#readme"
}