forked from facebookarchive/react-native-fbsdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
76 lines (76 loc) · 1.7 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
{
"name": "react-native-fbsdk",
"version": "0.9.0",
"description": "Facebook SDK support for React Native apps.",
"main": "./js/index.js",
"author": {
"name": "Zhuowen Deng"
},
"contributors": [
{
"name": "Chris Hackmann"
},
{
"name": "Pouya Larjani"
},
{
"name": "Cody Winton"
}
],
"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": {
"flow": "flow",
"lint": "eslint .",
"prettier": "prettier \"./**/*.js\" --write"
},
"dependencies": {
"adm-zip": "^0.4.7",
"fastfall": "^1.5.1",
"got": "^7.0.0",
"plist": "^2.1.0",
"progress": "^2.0.0",
"pump": "^1.0.2",
"xcode": "^1.0.0"
},
"peerDependencies": {
"prop-types": "15.x.x",
"react-native": ">=0.44.0"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "5.1.0",
"eslint-config-fb-strict": "22.1.0",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-flowtype": "2.43.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "21.8.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "2.6.0",
"eslint-plugin-react": "7.6.1",
"eslint-plugin-relay": "0.0.23",
"flow-bin": "^0.86.0",
"prettier": "^1.15.2"
},
"prettier": {
"requirePragma": true,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": false,
"jsxBracketSameLine": true,
"parser": "flow"
}
}