forked from Chimeejs/chimee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.53 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "chimee",
"version": "0.10.5",
"description": "a video-player aims to bring wonderful experience on browser",
"main": "lib/index.js",
"module": "lib/index.mjs",
"jsnext:main": "lib/index.mjs",
"browser": "lib/index.browser.js",
"scripts": {
"precommit": "npm run lint",
"prepush": "npm run lint && npm t",
"prepublishOnly": "npm t && pkg-ok",
"postmerge": "sh tool/auto-npm-install.sh",
"test": "npm run karma && jest --coverage && node env-check.js",
"unit": "jest --coverage --watch",
"lint": "eslint . --fix && flow check",
"flow": "flow check",
"start": "rollup -c build/rollup.config.dev.js -w",
"build": "npm run b-common && npm run b-es && npm run b-umd && npm run b-min",
"b-common": "rollup -c build/rollup.config.common.js",
"b-es": "rollup -c build/rollup.config.es.js",
"b-umd": "rollup -c build/rollup.config.umd.js",
"b-min": "rollup -c build/rollup.config.min.js",
"ie": "rollup -c demo/ie/rollup.config.js -w",
"autou": "ncu -a",
"jest": "jest",
"karma": "karma start karma.conf.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chimeejs/chimee.git"
},
"keywords": [
"video",
"player",
"h5",
"hls",
"mp4",
"flv"
],
"author": "toxic-johann",
"license": "MIT",
"bugs": {
"url": "https://github.com/Chimeejs/chimee/issues"
},
"homepage": "https://github.com/Chimeejs/chimee#readme",
"dependencies": {
"babel-runtime": "^6.26.0",
"chimee-helper": "^0.2.11",
"es-fullscreen": "^0.3.0",
"toxic-decorators": "^0.3.8"
},
"devDependencies": {
"babel-eslint": "^8.2.5",
"babel-jest": "^23.2.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"chai": "^4.1.2",
"chimee-kernel-flv": "^1.4.10",
"chimee-kernel-hls": "^1.3.2",
"chimee-mobile-player": "^0.2.6",
"chimee-player": "^1.4.5",
"chimee-plugin-center-state": "0.0.11",
"chimee-plugin-controlbar": "^0.4.9",
"chimee-plugin-danmu": "0.0.9",
"chimee-plugin-popup": "0.0.7",
"core-js": "^2.5.7",
"eslint": "^5.0.1",
"eslint-config-egg": "^7.0.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-jest": "^21.17.0",
"esm": "^3.0.55",
"flow-bin": "^0.75.0",
"husky": "^0.14.3",
"jest": "^23.2.0",
"karma": "^2.0.4",
"karma-chai": "^0.1.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-rollup-preprocessor": "^6.0.0",
"mocha": "^5.2.0",
"npm-check-updates": "^2.14.2",
"pkg-ok": "^2.2.0",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^3.0.5",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-flow-no-whitespace": "^1.0.0",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-serve": "^0.4.2",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-uglify": "^4.0.0",
"rollup-plugin-visualizer": "^0.8.0",
"rollup-watch": "^4.3.1"
},
"jest": {
"modulePaths": [
"src"
],
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules",
"bower_components"
],
"transform": {
".*": "babel-jest"
}
}
}