forked from bytedance/xgplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.68 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
{
"name": "xgplayer",
"version": "0.0.1",
"description": "xgplayer for video player",
"main": "index.js",
"private": true,
"scripts": {
"test": "node_modules/.bin/lerna-changelog",
"dev": "npx babel-node app.js",
"publish": "lerna publish",
"cz": "git cz",
"precz": "lint-staged",
"remove": "lerna run clean",
"clean": "lerna clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bytedance/xgplayer.git"
},
"keywords": [
"xgplayer",
"mp4",
"hls",
"flv",
"dash"
],
"lint-staged": {
"linters": {
"packages/**/*.js": [
"eslint -c .eslintrc.js --fix",
"git add"
]
},
"ignore": [
"**/browser/*.js",
"**/dist/*.js"
]
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/bytedance/xgplayer/issues"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"homepage": "https://github.com/bytedance/xgplayer#readme",
"devDependencies": {
"@koa/cors": "^2.2.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-node": "^0.0.1-security",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-plugin-transform-es2015-spread": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"cross-env": "^6.0.3",
"css-loader": "^0.28.11",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"koa": "^2.5.1",
"koa-range": "^0.3.0",
"koa-static": "^4.0.3",
"lerna": "^3.17.0",
"lerna-changelog": "^0.8.0",
"lint-staged": "^7.2.0",
"rollup": "^1.27.0",
"rollup-plugin-babel": "3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-multi-entry": "^2.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-require-context": "^1.0.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-uglify": "^6.0.3",
"rollup-plugin-uglify-es": "^0.0.1",
"rollup-plugin-url": "^3.0.0",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8",
"webworkify-webpack-dropin": "^1.1.9"
},
"dependencies": {
"babel-eslint": "^10.0.3",
"http-server": "^0.11.1"
}
}