forked from fullstackreact/react-native-oauth
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.36 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
{
"name": "@gsandf/react-native-oauth",
"version": "2.2.2",
"authors": [
"Ari Lerner <[email protected]> (https://fullstackreact.com)",
"Blake Knight <[email protected]> (http://blakek.me)"
],
"description": "An oauth manager for dealing with the complexities of oauth",
"main": "./react-native-oauth.js",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"build": "./node_modules/.bin/babel --source-maps=true --out-dir=dist .",
"dev": "npm run compile -- --watch",
"lint": "eslint ./src",
"publish_pages": "gh-pages -d public/",
"test": "./node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/gsandf/react-native-oauth.git"
},
"license": "ISC",
"keywords": [
"react",
"react-native",
"react-native-firestack",
"firestack",
"firebase",
"oauth",
"twitter"
],
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"rnpm": {
"commands": {
"prelink": "node_modules/@gsandf/react-native-oauth/bin/prepare.sh",
"postlink": "node_modules/@gsandf/react-native-oauth/bin/cocoapods.sh"
},
"ios": {
"project": "ios/OAuthManager.xcodeproj"
},
"android": {
"packageInstance": "new OAuthManagerPackage()"
}
},
"dependencies": {
"invariant": "^2.2.1",
"valib": "^2.0.0"
}
}