This repository has been archived by the owner on Apr 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 906
/
package.json
105 lines (105 loc) · 2.51 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
{
"name": "react-native-fbsdk",
"version": "3.0.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": "Zhuowen Deng"
},
"contributors": [
{
"name": "Chris Hackmann"
},
{
"name": "Pouya Larjani"
},
{
"name": "Cody Winton"
},
{
"name": "Janic Duplessis"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/facebook/react-native-fbsdk.git"
},
"homepage": "https://github.com/facebook/react-native-fbsdk/",
"keywords": [
"react",
"react-native",
"react-component",
"ios",
"android",
"facebook",
"core"
],
"license": "Facebook Platform License",
"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"
},
"files": [
"android/src/main/AndroidManifest.xml",
"android/src/main/java/",
"android/build.gradle",
"ios",
"lib",
"src",
"LICENSE.txt",
"README.md",
"react-native-fbsdk.podspec"
],
"dependencies": {},
"peerDependencies": {
"react-native": ">=0.59.0"
},
"devDependencies": {
"@react-native-community/bob": "^0.16.2",
"@react-native-community/eslint-config": "^2.0.0",
"@babel/core": "^7.12.7",
"@babel/runtime": "^7.12.5",
"babel-plugin-module-resolver": "^4.0.0",
"babel-jest": "^26.6.3",
"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-native": "^0.63.3",
"react-test-renderer": "16.13.1",
"react": "16.13.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"
]
}
}