-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "videojs-flvh265",
"version": "1.0.8",
"description": "Video.js' Tech for FLV+H.265/H.264",
"author": "coffe1891 <kai.ma@163.com>",
"license": "GPL",
"repository": {
"type": "git",
"url": "https://github.com/coffe1891/videojs-flvh265.git"
},
"main": "dist/videojs-flvh265.js",
"files": [
"README.md",
"dist/",
"index.html"
],
"scripts": {
"serve": "webpack-dev-server --open --config webpack.config.js",
"prebuild": "rimraf dist",
"build": "npm-run-all -p build:*",
"build:dev": "webpack --config scripts/build.dev.js --progress --colors",
"build:pro": "webpack --config scripts/build.pro.js --progress --colors"
},
"engines": {
"node": ">=8",
"npm": ">=5"
},
"keywords": [
"videojs-flvh265",
"videojs",
"videojs-tech",
"h265",
"h264",
"flv",
"playback"
],
"dependencies": {
"video.js": "^7",
"wx-inline-player-new": "^1.0.9"
},
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"babel-loader": "^8.1.0",
"copy-webpack-plugin": "^6.0.3",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}