Skip to content

Commit

Permalink
Update package.json & README.md & .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
xqq committed Nov 1, 2016
1 parent b1e6412 commit 9aad0d3
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -181,4 +181,5 @@ pip-log.txt
.DS_Store

# Visual Studio Code
.vscode/
.vscode/
browse.VC.db
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

flv.js
flv.js [![npm](https://img.shields.io/npm/v/flv.js.svg?style=flat)](https://www.npmjs.com/package/flv.js)
======
An HTML5 Flash Video (FLV) Player written in pure JavaScript without Flash. LONG LIVE FLV!

Expand All @@ -24,6 +24,11 @@ flv.js is written in [ECMAScript 6][], transpiled into ECMAScript 5 by [Babel Co
- Compatible with Chrome, FireFox, Safari 10, IE11 and Edge
- Extermely low overhead, and hardware accelerated by your browser!

## Installation
```bash
npm install --save flv.js
```

## Build
```bash
npm install # install dev-dependences
Expand Down
8 changes: 6 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@
"version": "0.0.1",
"description": "HTML5 FLV Player",
"keywords": ["html5", "flv", "mse", "javascript"],
"main": "./src/flv.js",
"main": "./dist/flv.js",
"types": "./d.ts/flv.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/Bilibili/flv.js"
},
"scripts": {
"dev": "gulp watch",
"build": "gulp release",
Expand All @@ -15,7 +19,7 @@
"webworkify": "^1.4.0"
},
"devDependencies": {
"babel-preset-es2015": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"del": "^2.2.0",
Expand Down

0 comments on commit 9aad0d3

Please sign in to comment.