forked from tjallingt/react-youtube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.63 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
{
"name": "react-youtube",
"version": "7.3.0-patch-1",
"description": "react.js powered YouTube player component",
"main": "dist/YouTube.js",
"repository": {
"type": "git",
"url": "git@github.com:compedit/react-youtube.git"
},
"keywords": [
"react",
"youtube",
"player",
"react-component"
],
"author": "troy betz <troybetz@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/compedit/react-youtube/issues"
},
"homepage": "https://github.com/compedit/react-youtube",
"dependencies": {
"youtube-player": "https://github.com/gajus/youtube-player/tarball/39a41d2fe37d3c8d36527edd81144e1e1b584245",
"lodash.isequal": "^4.4.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.6.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"expect": "^1.20.2",
"jsdom": "^9.5.0",
"mocha": "^3.1.0",
"proxyquire": "^1.7.10",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.1"
},
"peerDependencies": {
"react": ">=0.14.1"
},
"scripts": {
"test": "mocha",
"compile": "babel src --out-dir dist",
"prepublish": "npm run compile",
"lint": "eslint src",
"example": "webpack-dev-server --config example/webpack.config.js"
}
}