-
Notifications
You must be signed in to change notification settings - Fork 214
/
package.json
56 lines (56 loc) · 1.56 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
{
"name": "react-native-oauth",
"version": "2.1.18",
"author": "Ari Lerner <[email protected]> (https://fullstackreact.com)",
"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 --ignore 'node_modules,dist' --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/fullstackreact/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/react-native-oauth/bin/prepare.sh",
"postlink": "node_modules/react-native-oauth/bin/cocoapods.sh"
},
"ios": {
"project": "ios/OAuthManager.xcodeproj"
},
"android": {
"packageInstance": "new OAuthManagerPackage()"
}
},
"dependencies": {
"invariant": "^2.2.1",
"valib": "^2.0.0"
},
"devDependencies": {
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-runtime": "^6.26.0"
}
}