forked from LonelyCpp/react-native-youtube-iframe
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.58 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
{
"name": "react-native-youtube-iframe",
"version": "2.2.1",
"description": "A simple wrapper around the youtube iframe js API for react native",
"main": "src/index.js",
"files": [
"src/"
],
"types": "index.d.ts",
"scripts": {
"lint": "eslint src",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf ./dist && babel src -d dist",
"prepare": "rimraf ./dist && babel src -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LonelyCpp/react-native-youtube-iframe.git"
},
"keywords": [
"react-native",
"react-component",
"react-native-component",
"react",
"react native",
"mobile",
"ios",
"android",
"ui",
"youtube",
"youtube-iframe",
"iframe"
],
"author": "Ananthu P Kanive",
"license": "MIT",
"bugs": {
"url": "https://github.com/LonelyCpp/react-native-youtube-iframe/issues"
},
"homepage": "https://lonelycpp.github.io/react-native-youtube-iframe/",
"peerDependencies": {
"react": ">=16.8.6",
"react-native": ">=0.60",
"react-native-web-webview": ">=1.0.2",
"react-native-webview": ">=7.0.0"
},
"peerDependenciesMeta": {
"react-native-web-webview": {
"optional": true
},
"react-native-webview": {
"optional": true
}
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@react-native-community/eslint-config": "^2.0.0",
"eslint": "^7.7.0",
"metro-react-native-babel-preset": "^0.64.0",
"rimraf": "^3.0.2"
},
"dependencies": {
"events": "^3.2.0"
}
}