-
Notifications
You must be signed in to change notification settings - Fork 211
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 991 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 991 Bytes
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
{
"name": "react-native-oauth",
"version": "2.1.15",
"author": "Ari Lerner <ari@fullstack.io> (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 --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": "*"
},
"dependencies": {
"invariant": "^2.2.1",
"valib": "^2.0.0"
}
}