forked from video-react/video-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.59 KB
/
package.json
File metadata and controls
123 lines (123 loc) · 3.59 KB
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
120
121
122
123
{
"name": "video-react",
"version": "0.8.3",
"description": "Video-React is a web video player built from the ground up for an HTML5 world using React library.",
"main": "lib/index.js",
"style": "dist/video-react.css",
"scripts": {
"report-coverage": "coveralls < ./coverage/lcov.info",
"test": "react-scripts test --env=jsdom",
"cover": "npm test -- --coverage",
"start": "webpack-dev-server --config ./webpack.dev.config.js --watch",
"build-docs": "cross-env WEBPACK_BUILD=development webpack --config ./webpack.dev.config.js --progress --colors",
"build": "cross-env WEBPACK_BUILD=production webpack --progress --colors && webpack --progress --colors",
"prebuild": "babel src --out-dir lib --ignore src/__tests__/",
"create-release": "npm test && sh ./scripts/release",
"publish-release": "npm test && sh ./scripts/publish",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/video-react/video-react.git"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"lib",
"dist",
"styles",
"tonic-example.js"
],
"keywords": [
"react",
"video",
"video-react",
"react-video",
"player",
"component",
"components",
"react-component",
"react-components",
"react component",
"react components",
"ui"
],
"contributors": [
"Junmin Liu",
"Xincun Li",
"Jing Sun",
"Xiaolei Chen",
"Xiangkun Yang"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/video-react/video-react/issues"
},
"homepage": "https://github.com/video-react/video-react#readme",
"tonicExampleFilename": "tonic-example.js",
"dependencies": {
"classnames": "^2.2.3",
"lodash.throttle": "^4.1.1",
"prop-types": "^15.5.8"
},
"peerDependencies": {
"react": "^15.0.0",
"react-dom": "^15.0.0",
"redux": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.2",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-react-app": "^0.2.1",
"babel-preset-stage-0": "^6.5.0",
"bootstrap": "^4.0.0-alpha.6",
"clean-webpack-plugin": "^0.1.8",
"conventional-changelog-cli": "^1.1.1",
"conventional-recommended-bump": "^0.3.0",
"copy-webpack-plugin": "^4.0.1",
"coveralls": "^2.11.12",
"cross-env": "^2.0.0",
"css-loader": "^0.25.0",
"deep-freeze": "0.0.1",
"ejs": "^2.5.1",
"enzyme": "^2.4.1",
"eslint": "^3.2.2",
"eslint-config-airbnb": "^10.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.0.1",
"eslint-plugin-react": "^6.0.0",
"eslint-plugin-standard": "^2.0.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"history": "^3.0.0",
"hls.js": "^0.7.5",
"holderjs": "^2.9.3",
"json-loader": "^0.5.4",
"node-sass": "^3.11.2",
"raw-loader": "^0.5.1",
"react": "^15.5.4",
"react-addons-css-transition-group": "^15.5.2",
"react-addons-test-utils": "^15.5.1",
"react-addons-transition-group": "^15.5.2",
"react-dom": "^15.5.4",
"react-helmet": "^3.0.1",
"react-prism": "4.0.0",
"react-router": "^2.6.1",
"react-scripts": "^0.9.5",
"react-test-renderer": "^15.5.4",
"react-transition-group": "^1.1.2",
"reactstrap": "^4.0.1",
"redux": "^3.6.0",
"sass-loader": "^4.0.2",
"sinon": "^1.17.6",
"static-site-generator-webpack-plugin": "^2.0.1",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1"
}
}