This repository has been archived by the owner on Dec 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.44 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
{
"name": "react-a11y-video",
"version": "1.1.0",
"description": "Accessible HTML5 Video player React component",
"homepage": "https://github.com/roman01la/react-a11y-video",
"main": "build/react-a11y-video.js",
"scripts": {
"start": "node dev-server.js",
"prepublish": "mkdir -p build && 6to5 src/ -d build/ && find build -type f \\( -iname \\*.jsx -o -iname \\*.es6 \\) -exec sh -c 'mv \"$1\" \"${1%.jsx}.js\"' _ {} \\; && cp -r src/img build/ && cp -r src/styles build/"
},
"author": {
"name": "Roman Liutikov",
"email": "[email protected]",
"url": "https://romanliutikov.com"
},
"repository": {
"type": "git",
"url": "git://github.com/roman01la/react-a11y-video.git"
},
"bugs": {
"url": "https://github.com/roman01la/react-a11y-video/issues"
},
"keywords": [
"react",
"reactjs",
"a11y",
"react-component",
"video",
"player",
"accessible",
"html5"
],
"license": "MIT",
"peerDependencies": {
"react": "^0.12.2"
},
"devDependencies": {
"6to5": "^3.4.1",
"6to5-core": "^3.4.1",
"6to5-loader": "^3.0.0",
"6to5-runtime": "^3.4.1",
"autoprefixer-loader": "^1.1.0",
"core-js": "^0.4.10",
"css-loader": "^0.9.1",
"file-loader": "^0.8.1",
"react-hot-loader": "^1.1.4",
"sass-loader": "^0.4.0-beta.1",
"style-loader": "^0.8.3",
"url-loader": "^0.5.5",
"webpack": "^1.5.3",
"webpack-dev-server": "^1.7.0"
}
}