forked from video-react/video-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·151 lines (151 loc) · 4.32 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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "video-react",
"version": "0.13.7",
"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": {
"test": "BABEL_ENV=test jest",
"test:coverage": "BABEL_ENV=test jest --coverage",
"start": "webpack-dev-server --watch",
"build-docs": "cross-env WEBPACK_BUILD=production webpack --progress --colors",
"build": "rollup -c",
"prebuild": "cross-env BABEL_ENV=lib-dir babel src --out-dir lib --ignore src/__tests__/",
"create-release": "npm test && sh ./scripts/release",
"create-major": "sh ./scripts/release major",
"create-minor": "sh ./scripts/release minor",
"create-patch": "sh ./scripts/release patch",
"publish-release": "npm test && sh ./scripts/publish",
"lint": "eslint src",
"format": "prettier --config .prettierrc.js --write \"src/**/*.{js,json,md}\" \"docs/**/*.{js,json,md}\" \"*.{js,json,md}\""
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,css,md}": [
"npm run format",
"git add"
]
},
"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",
"Mengdi Chen",
"Tianxiao Wang",
"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": {
"@babel/runtime": "^7.2.0",
"classnames": "^2.2.6",
"lodash.throttle": "^4.1.1",
"prop-types": "^15.6.2",
"redux": "^4.0.1"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.0.0",
"babel-loader": "^8.0.5",
"bootstrap": "^4.2.1",
"clean-webpack-plugin": "^1.0.0",
"conventional-changelog-cli": "^1.3.22",
"conventional-recommended-bump": "^1.0.0",
"copy-webpack-plugin": "^4.6.0",
"cross-env": "^2.0.0",
"css-loader": "^2.1.0",
"deep-freeze": "0.0.1",
"ejs": "^2.6.1",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^5.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^2.0.0",
"file-loader": "^3.0.1",
"history": "^3.0.0",
"hls.js": "^0.6.10",
"holderjs": "^2.9.6",
"husky": "^1.3.1",
"jest": "^24.0.0",
"json-loader": "^0.5.7",
"lint-staged": "^8.1.1",
"mini-css-extract-plugin": "^0.5.0",
"node-sass": "^4.11.0",
"prettier": "^1.16.3",
"raw-loader": "^1.0.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-helmet": "^5.0.3",
"react-prism": "^4.3.2",
"react-router": "^3.2.1",
"reactstrap": "^7.0.2",
"rollup": "^1.0.0",
"rollup-plugin-babel": "^4.2.0",
"rollup-plugin-babel-minify": "^7.0.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-sass": "^1.1.0",
"sass-loader": "^7.1.0",
"sinon": "^1.17.6",
"static-site-generator-webpack-plugin": "^3.4.2",
"style-loader": "^0.13.1",
"uglifyjs-webpack-plugin": "^2.1.1",
"url-loader": "^1.1.2",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
}
}