-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
55 lines (55 loc) · 1.91 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
{
"name": "react-native-nearby-api",
"version": "0.0.5",
"description": "React Native wrapper around Google's Nearby API SDK",
"main": "index.js",
"scripts": {
"preversion": "",
"version": "git add CHANGELOG.md",
"postversion": "git push && git push --tags",
"postinstall": "scripts/install.js",
"start": "node node_modules/react-native/local-cli/cli.js start",
"run:packager": "./node_modules/react-native/packager/packager.sh",
"run:ios": "react-native run-ios --project-path ./example/ios",
"build:ios": "bundle install --binstubs ./example/ios && bundle exec pod install --project-directory=./example/ios/ && yarn bundle:ios",
"bundle:ios": "node node_modules/react-native/local-cli/cli.js bundle --entry-file='./example/index.js' --bundle-output='./example/ios/example/main.jsbundle' --dev=false --platform='ios'",
"build:android": "./gradlew :react-native-nearby-api:assembleDebug",
"start:android": "adb shell am start -n com.example/.MainActivity",
"run:android": "./gradlew installDebug && yarn start:android",
"renameLogger": "./renameLogger.sh"
},
"keywords": [
"react-native",
"google",
"nearby",
"messages",
"android",
"ios"
],
"author": "Bad Features, Inc",
"license": "ISC",
"peerDependencies": {
"react": ">=15.4.0 || ^16.0.0-alpha",
"react-native": "^0.41.2"
},
"devDependencies": {
"babel-plugin-module-resolver": "^3.0.0",
"escape-string-regexp": "^1.0.5",
"metro-bundler": "^0.20.3",
"react": "16.0.0-alpha.12",
"react-native": "^0.50.1"
},
"rnpm": {
"android": {
"sourceDir": "./android"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/badfeatures/react-native-nearby-api.git"
},
"bugs": {
"url": "https://github.com/badfeatures/react-native-nearby-api/issues"
},
"homepage": "https://github.com/badfeatures/react-native-nearby-api#readme"
}