-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
executable file
·89 lines (89 loc) · 2.96 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
{
"name": "cbplayer2",
"version": "0.12.0",
"description": "CDNBye official web player v2",
"main": "dist/CBPlayer.min.js",
"scripts": {
"start": "npm run dev",
"build": "cross-env NODE_ENV=production webpack --config webpack/prod.config.js --progress",
"dev": "cross-env NODE_ENV=development webpack-dev-server --config webpack/dev.config.js --watch --colors",
"test": "eslint src webpack",
"format": "eslint \"**/*.js\" --fix && prettier \"**/*.{js,json,md}\" --write",
"format:staged": "eslint \"**/*.js\" --fix && pretty-quick --staged --verbose --pattern \"**/*.{js,json,md}\"",
"format:check": "eslint \"**/*.js\" && prettier-check \"**/*.{js,json,md}\"",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"publish": "npm publish",
"git-push": "git add demo && git add package.json && git add README.md && git add src && git commit -m 'release v0.12.0' && git push"
},
"files": [
"dist"
],
"repository": {
"url": "git+https://github.com/cdnbye/CBPlayer.git",
"type": "git"
},
"keywords": [
"p2p",
"webrtc",
"cdnbye",
"m3u8",
"hls",
"player",
"danmaku",
"video",
"html5"
],
"gitHooks": {
},
"author": "cdnbye",
"license": "MIT",
"bugs": {
"url": "https://github.com/cdnbye/CBPlayer/issues"
},
"homepage": "https://www.cdnbye.com",
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.4.5",
"@vuepress/plugin-back-to-top": "1.7.1",
"@vuepress/plugin-google-analytics": "1.7.1",
"@vuepress/plugin-pwa": "1.7.1",
"art-template": "4.13.2",
"art-template-loader": "1.4.3",
"autoprefixer": "^9.6.1",
"babel-loader": "^8.0.6",
"cross-env": "^7.0.0",
"css-loader": "^5.0.0",
"cssnano": "^4.1.10",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-loader": "^4.0.0",
"eslint-plugin-prettier": "^3.1.1",
"exports-loader": "^1.0.0",
"file-loader": "^6.0.0",
"git-revision-webpack-plugin": "^3.0.3",
"mini-css-extract-plugin": "1.3.0",
"node-sass": "^5.0.0",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.4",
"prettier-check": "^2.0.0",
"pretty-quick": "^3.0.0",
"sass-loader": "^10.0.0",
"strip-loader": "^0.1.2",
"style-loader": "^2.0.0",
"svg-inline-loader": "0.8.2",
"template-string-optimize-loader": "^3.0.0",
"url-loader": "^4.1.0",
"vuepress": "1.7.1",
"webpack": "^4.40.2",
"webpack-cli": "3.3.12",
"webpack-dev-server": "^3.8.1",
"yorkie": "^2.0.0"
},
"dependencies": {
"axios": "0.21.0",
"balloon-css": "^1.0.3",
"promise-polyfill": "8.2.0",
"get-browser-rtc": "^1.0.0"
}
}