forked from cookpete/react-player
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.99 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.99 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
{
"name": "react-player",
"version": "0.7.4",
"description": "A react component for playing a variety of URLs, including file paths, YouTube, SoundCloud and Vimeo",
"main": "lib/ReactPlayer.js",
"scripts": {
"clean": "rimraf lib demo",
"build:webpack": "NODE_ENV=production webpack --config webpack.config.prod.js",
"build:browser": "NODE_ENV=production webpack --config webpack.config.browser.js",
"build:demo": "npm run clean && npm run build:webpack && cp index.html demo",
"build:compile": "NODE_ENV=production babel src -d lib --ignore src/demo",
"start": "node server.js",
"lint": "standard --verbose | snazzy",
"test": "karma start test/karma.config.js",
"preversion": "npm run lint && npm run test",
"version": "npm run update-changelog && npm run build:browser && git add CHANGELOG.md dist",
"update-changelog": "auto-changelog --package --template compact",
"prepublish": "npm run build:compile; npm run build:browser",
"postpublish": "npm run clean"
},
"repository": {
"type": "git",
"url": "https://github.com/CookPete/react-player.git"
},
"keywords": [
"react",
"media",
"player",
"video",
"audio",
"youtube",
"soundcloud",
"vimeo",
"react-component"
],
"author": "Pete Cook <pete@cookpete.com> (http://github.com/cookpete)",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/CookPete/react-player/issues"
},
"homepage": "https://github.com/CookPete/react-player",
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"auto-changelog": "^0.3.0",
"babel-cli": "^6.3.17",
"babel-core": "^6.3.17",
"babel-eslint": "^6.0.2",
"babel-loader": "^6.2.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-react-hmre": "^1.0.1",
"babel-preset-stage-0": "^6.3.13",
"chai": "^3.5.0",
"css-loader": "^0.23.0",
"exports-loader": "^0.6.2",
"express": "^4.13.3",
"extract-text-webpack-plugin": "^1.0.1",
"imports-loader": "^0.6.4",
"json-loader": "^0.5.4",
"karma": "^0.13.16",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-cli": "^1.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.0",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"node-sass": "^3.4.2",
"normalize.css": "^4.0.0",
"react": "^15.0.1",
"react-dom": "^15.0.1",
"rimraf": "^2.4.4",
"sass-loader": "^3.1.2",
"snazzy": "^4.0.0",
"standard": "^7.1.0",
"style-loader": "^0.13.0",
"webpack": "^1.12.9",
"webpack-dev-middleware": "^1.4.0",
"webpack-hot-middleware": "^2.6.0"
},
"dependencies": {
"es6-promise": "^3.1.2",
"fetch-jsonp": "^1.0.0",
"load-script": "^1.0.0",
"query-string": "^4.1.0"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"/dist/*"
]
}
}