forked from thebergamo/react-native-fbsdk-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 2.95 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
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "react-native-fbsdk-next",
"version": "4.2.0",
"description": "Facebook SDK support for React Native apps.",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"react-native": "src/index.js",
"sideEffects": false,
"author": {
"name": "Marcos Bérgamo"
},
"contributors": [
{
"name": "Zhuowen Deng"
},
{
"name": "Chris Hackmann"
},
{
"name": "Pouya Larjani"
},
{
"name": "Cody Winton"
},
{
"name": "Janic Duplessis"
},
{
"name": "Georges DIMITRY"
}
],
"repository": {
"type": "git",
"url": "https://github.com/thebergamo/react-native-fbsdk-next.git"
},
"homepage": "https://github.com/thebergamo/react-native-fbsdk-next/",
"keywords": [
"react",
"react-native",
"react-component",
"ios",
"android",
"facebook",
"core"
],
"license": "MIT",
"scripts": {
"start": "react-native start",
"prepare": "bob build",
"flow": "flow",
"lint": "eslint ./src",
"test": "yarn validate:prettier && yarn validate:eslint && yarn validate:flow",
"validate:eslint": "eslint \"src/**/*\" \"example/src/**/*\"",
"validate:flow": "flow",
"validate:prettier": "prettier \"src/**/*.js\" \"example/src/**/*.js\" --check",
"example:ios": "cd ./example && react-native run-ios",
"example:android": "cd ./example && react-native run-android --no-jetifier",
"semantic-release": "semantic-release"
},
"files": [
"android/src/main/AndroidManifest.xml",
"android/src/main/java/",
"android/build.gradle",
"ios",
"lib",
"src",
"LICENSE.txt",
"README.md",
"react-native-fbsdk-next.podspec",
"types"
],
"dependencies": {},
"peerDependencies": {
"react-native": ">=0.59.0"
},
"devDependencies": {
"@babel/core": "^7.12.7",
"@babel/runtime": "^7.12.5",
"@react-native-community/bob": "^0.16.2",
"@react-native-community/eslint-config": "^2.0.0",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.10",
"@semantic-release/release-notes-generator": "^9.0.2",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "7.14.0",
"flow-bin": "^0.122.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.59.0",
"prettier": "^2.2.0",
"react": "16.13.1",
"react-native": "^0.63.3",
"react-test-renderer": "16.13.1",
"semantic-release": "^17.4.1"
},
"prettier": {
"requirePragma": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"jsxBracketSameLine": true,
"parser": "flow"
},
"@react-native-community/bob": {
"source": "src",
"output": "lib",
"targets": [
[
"commonjs",
{
"copyFlow": true
}
],
"module"
]
},
"types": "types/index.d.ts"
}