-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
35 lines (35 loc) · 1.22 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
{
"name": "react-native-anue-native-ad",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/react-native-admob-native-unified.git"
},
"author": "anue Mobile Team",
"contributors": [
"Newman"
],
"license": "Apache-2.0",
"devDependencies": {
"babel-preset-react-native-stage-0": "^1.0.1",
"jest": "^23.0.1",
"jest-react-native": "^18.0.0",
"react-test-renderer": "16.3.1"
},
"scripts": {
"start": "react-native start",
"android": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res ; react-native run-android",
"android-dev": "react-native bundle --platform android --dev false --entry-file indexDev.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res ; react-native run-android --variant betaDebug",
"ios": "react-native run-ios",
"ios-dev": "react-native run-ios --scheme NativeModuleSampleDev",
"test": "jest"
},
"jest": {
"preset": "react-native"
},
"main": "index.js",
"dependencies": {
"react": "16.3.1",
"react-native": "0.52.2"
}
}