-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
56 lines (56 loc) · 1.61 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
{
"name": "react-hls",
"version": "0.0.8",
"description": "simple react component for playing hls/rtmp live stream",
"main": "./dist/assets/player.bundle.js",
"scripts": {
"start": "cp src/index.html dist/ && webpack-dev-server --inline --hot --config webpack/develop.js",
"build": "webpack --config webpack/develop.js",
"build:lib": "babel src --out-dir lib",
"build:production": "webpack --config webpack/production.js",
"release": "npm run build:production && npm publish",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mingxinstar/react-hls.git"
},
"keywords": [
"hls",
"rtmp",
"react"
],
"author": "mingxin.huang",
"license": "ISC",
"bugs": {
"url": "https://github.com/mingxinstar/react-hls/issues"
},
"homepage": "https://github.com/mingxinstar/react-hls#readme",
"dependencies": {
"hls.js": "^0.6.14"
},
"peerDependencies": {
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-dom": "^15.5.4"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-loader": "^6.2.10",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-preset-stage-3": "^6.17.0",
"css-loader": "^0.26.1",
"eslint": "^3.13.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-react": "^6.9.0",
"file-loader": "^0.9.0",
"node-sass": "^4.7.2",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.1"
}
}