forked from bytedance/xgplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.81 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
{
"devDependencies": {
"@koa/cors": "^2.2.1",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"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": "2.9.0",
"lerna-changelog": "^0.8.0",
"lint-staged": "^7.2.0",
"style-loader": "^0.21.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.8",
"webworkify-webpack-dropin": "^1.1.9"
},
"name": "xgplayer",
"version": "0.0.1",
"description": "xgplayer for video player",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/lerna-changelog",
"dev": "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"
}