forked from souporserious/react-media-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.07 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
{
"name": "react-media-player",
"version": "0.7.0",
"description": "React media player.",
"main": "lib/react-media-player.js",
"files": ["dist", "lib"],
"scripts": {
"build:lib": "babel src --out-dir lib",
"build":
"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js",
"dev":
"webpack-dev-server --inline --hot --progress --colors --host 0.0.0.0 --devtool eval",
"postbuild":
"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js",
"prebuild": "rm -rf dist && mkdir dist",
"prepublish": "npm run build",
"deploy":
"NODE_ENV=production TARGET=minify webpack && git-directory-deploy --directory example --branch gh-pages"
},
"repository": {
"type": "git",
"url": "https://github.com/souporserious/react-media-player"
},
"keywords": [
"react",
"component",
"media",
"audio",
"video",
"player",
"playlist"
],
"author":
"Travis Arnold <[email protected]> (http://souporserious.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/souporserious/react-media-player/issues"
},
"homepage": "https://github.com/souporserious/react-media-player",
"peerDependencies": {
"react": "0.14.x || ^15.0.0",
"react-dom": "0.14.x || ^15.0.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"chokidar": "^1.6.1",
"css-loader": "^0.25.0",
"git-directory-deploy": "^1.5.1",
"http-server": "^0.9.0",
"node-libs-browser": "^1.0.0",
"node-sass": "^3.2.0",
"postcss-loader": "^0.13.0",
"react": "15.3.2",
"react-dom": "15.3.2",
"react-motion": "^0.4.2",
"react-motion-ui-pack": "^0.10.2",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.9.0"
},
"dependencies": {
"prop-types": "^15.5.10"
}
}