Skip to content

Commit

Permalink
[build] 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
toxic-johann committed Mar 3, 2018
1 parent d61841b commit 89bf3fd
Show file tree
Hide file tree
Showing 7 changed files with 169 additions and 7 deletions.
14 changes: 14 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
__mocks__/
__tests__/
tests/
build/
lib/index.dev.js
coverage/
demo/
doc/
flow/
node_modules/
tool/
bundle-size/
.babelrc
.flowconfig
119 changes: 119 additions & 0 deletions .package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
{
"name": "chimee-player",
"version": "1.3.0",
"description": "A complete set of H5 player",
"main": "lib/chimee-player.js",
"module": "lib/chimee-player.mjs",
"jsnext:main": "lib/chimee-player.mjs",
"browser": "lib/chimee-player.browser.js",
"scripts": {
"test": "jest --coverage",
"test:w": "jest --coverage --watch",
"start": "rollup -c build/rollup.config.dev.js -w",
"lint": "eslint . --fix",
"precommit": "npm run lint",
"prepush": "npm run test",
"build": "npm run b-common && npm run b-es && npm run b-umd && npm run b-min && contributor",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Chimeejs/chimee-player.git"
},
"keywords": [
"plugin",
"chimee",
"player",
"video",
"H5",
"HTML5",
"javascript"
],
"author": "huzunjie",
"license": "MIT",
"bugs": {
"url": "https://github.com/Chimeejs/chimee-player/issues"
},
"homepage": "https://github.com/Chimeejs/chimee-player#readme",
"dependencies": {
"babel-runtime": "^6.26.0",
"chimee": "^0.9.2",
"chimee-helper": "^0.2.10",
"chimee-kernel-flv": "^1.4.10",
"chimee-kernel-hls": "^1.2.0",
"chimee-plugin-center-state": "0.0.8",
"chimee-plugin-contextmenu": "^0.1.2",
"chimee-plugin-controlbar": "^0.4.0",
"chimee-plugin-log": "0.0.4",
"chimee-plugin-popup": "0.0.7"
},
"devDependencies": {
"babel-eslint": "^8.0.3",
"babel-jest": "^22.4.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"contributor": "^0.1.25",
"cssnano": "^3.10.0",
"eslint": "^4.12.1",
"eslint-config-egg": "^7.0.0",
"eslint-plugin-jest": "^21.4.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^22.4.2",
"postcss-nested": "^3.0.0",
"rollup": "^0.56.3",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-postcss": "^1.3.2",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-serve": "^0.4.2",
"rollup-plugin-server": "^0.7.0",
"rollup-plugin-uglify": "^3.0.0",
"rollup-plugin-visualizer": "^0.3.1"
},
"jest": {
"modulePaths": [
"src"
],
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules",
"bower_components"
],
"moduleNameMapper": {
"\\.css$": "identity-obj-proxy"
},
"transform": {
".*": "babel-jest"
}
},
"contributors": [
{
"name": "胡尊杰",
"email": null,
"url": "https://github.com/huzunjie",
"contributions": 23,
"additions": 367,
"deletions": 39,
"hireable": null
},
{
"name": "Johann",
"email": null,
"url": "https://github.com/toxic-johann",
"contributions": 2,
"additions": 3530,
"deletions": 1994,
"hireable": true
}
]
}
8 changes: 8 additions & 0 deletions contributors.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
###### Contributors
[胡尊杰](https://github.com/huzunjie)
<font color="#999">23 Commits</font> / <font color="#6cc644">367++</font> / <font color="#bd3c00"> 39--</font>
<font color="#dedede">92.00%&nbsp;<font color="#dedede">|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||</font><font color="#f4f4f4">|||||||||||||</font><br><br>
[Johann](https://github.com/toxic-johann)
<font color="#999">2 Commits</font> / <font color="#6cc644">3530++</font> / <font color="#bd3c00"> 1994--</font>
<font color="#dedede">08.00%&nbsp;<font color="#dedede">||||||||||||||</font><font color="#f4f4f4">||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||</font><br><br>
###### [Generated](https://github.com/jakeleboeuf/contributor) on Sat Mar 03 2018 20:01:15 GMT+0800 (CST)
2 changes: 1 addition & 1 deletion lib/chimee-player.browser.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/** chimeePlayer
* chimee-player v1.2.2
* chimee-player v1.3.0
* (c) 2017 huzunjie
* Released under MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/chimee-player.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/** chimeePlayer
* chimee-player v1.2.2
* chimee-player v1.3.0
* (c) 2017 huzunjie
* Released under MIT
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/chimee-player.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

/** chimeePlayer
* chimee-player v1.2.2
* chimee-player v1.3.0
* (c) 2017 huzunjie
* Released under MIT
*/
Expand Down
29 changes: 25 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chimee-player",
"version": "1.2.2",
"version": "1.3.0",
"description": "A complete set of H5 player",
"main": "lib/chimee-player.js",
"module": "lib/chimee-player.mjs",
Expand All @@ -13,7 +13,7 @@
"lint": "eslint . --fix",
"precommit": "npm run lint",
"prepush": "npm run test",
"build": "npm run b-common && npm run b-es && npm run b-umd && npm run b-min",
"build": "npm run b-common && npm run b-es && npm run b-umd && npm run b-min && contributor",
"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",
Expand Down Expand Up @@ -58,6 +58,7 @@
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"contributor": "^0.1.25",
"cssnano": "^3.10.0",
"eslint": "^4.12.1",
"eslint-config-egg": "^7.0.0",
Expand Down Expand Up @@ -94,5 +95,25 @@
"transform": {
".*": "babel-jest"
}
}
}
},
"contributors": [
{
"name": "胡尊杰",
"email": null,
"url": "https://github.com/huzunjie",
"contributions": 23,
"additions": 367,
"deletions": 39,
"hireable": null
},
{
"name": "Johann",
"email": null,
"url": "https://github.com/toxic-johann",
"contributions": 2,
"additions": 3530,
"deletions": 1994,
"hireable": true
}
]
}

0 comments on commit 89bf3fd

Please sign in to comment.