forked from tjallingt/react-youtube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.31 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
{
"name": "react-youtube",
"version": "3.2.0",
"description": "react.js powered YouTube player component",
"main": "dist/YouTube.js",
"repository": {
"type": "git",
"url": "[email protected]:compedit/react-youtube.git"
},
"keywords": [
"react",
"youtube",
"player",
"react-component"
],
"author": "troy betz <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/compedit/react-youtube/issues"
},
"homepage": "https://github.com/compedit/react-youtube",
"dependencies": {
"get-youtube-id": "^0.1.3",
"object-assign": "^2.0.0",
"random-global": "^1.0.0",
"require-sdk": "0.0.2"
},
"devDependencies": {
"babel": "^5.0.8",
"babel-eslint": "^2.0.2",
"babel-jest": "^5.0.1",
"eslint": "^0.18.0",
"jest-cli": "^0.4.0"
},
"peerDependencies": {
"react": ">=0.13.0"
},
"scripts": {
"test": "jest",
"compile": "babel src --out-dir dist",
"prepublish": "npm run compile",
"lint": "eslint ."
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"js"
],
"moduleFileExtensions": [
"js"
],
"unmockedModulePathPatterns": [
"./node_modules/react",
"./src/YouTube"
],
"testPathDirs": [
"src"
]
}
}