forked from invertase/react-native-google-mobile-ads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 4.94 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "@invertase/react-native-google-ads",
"version": "1.0.0",
"author": "Invertase <[email protected]> (http://invertase.io)",
"description": "React Native Google Ads is an easy way to monetize mobile apps with targeted, in-app advertising.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/invertase/react-native-google-ads"
},
"license": "Apache-2.0",
"keywords": [
"react",
"react-native",
"admob",
"mobile ads",
"google ads",
"gdpr",
"banner ad",
"rewarded ad",
"interstitial",
"ad consent"
],
"sdkVersions": {
"ios": {
"googleAds": "7.69.0"
},
"android": {
"minSdk": 16,
"targetSdk": 30,
"compileSdk": 31,
"buildTools": "31.0.0",
"googleAds": "19.8.0"
}
},
"scripts": {
"prepare": "cd example && yarn && cd ios && (pod install || true) && cd ../.. && yarn build",
"build": "genversion --semi lib/version.js",
"build:clean": "rimraf android/build && rimraf ios/build",
"lint:code": "yarn lint:js && yarn lint:android && yarn lint:ios:check",
"lint:js": "eslint . --ext .js,.jsx,.ts,.tsx --max-warnings=0",
"lint:android": "google-java-format --set-exit-if-changed --replace --glob=\"android/**/*.java\"",
"lint:ios:check": "clang-format --glob=\"ios/**/*.{h,cpp,m,mm}\" --style=Google -n -Werror",
"lint:ios:fix": "clang-format -i --glob=\"ios/**/*.{h,cpp,m,mm}\" --style=Google",
"lint:markdown:check": "prettier --check \"docs/**/*.md\"",
"lint:markdown:fix": "prettier --write \"docs/**/*.md\"",
"lint:report": "eslint --output-file=eslint-report.json --format=json . --ext .js,.jsx,.ts,.tsx",
"lint:spellcheck": "spellchecker --quiet --files=\"docs/**/*.md\" --dictionaries=\"./.spellcheck.dict.txt\" --reports=\"spelling.json\" --plugins spell indefinite-article repeated-words syntax-mentions syntax-urls frontmatter",
"tsc:compile": "tsc --project .",
"lint": "yarn lint:code && yarn tsc:compile",
"tests:jest": "jest",
"tests:jest-watch": "jest --watch",
"tests:jest-coverage": "jest --coverage",
"tests:packager": "cd example && yarn react-native start",
"tests:packager:reset-cache": "cd example && yarn react-native start --reset-cache",
"tests:android:build": "cd example && yarn detox build --configuration android.emu.debug",
"tests:android:build-release": "cd example && yarn detox build --configuration android.emu.release",
"tests:android:test": "cd example && yarn detox test --configuration android.emu.debug --loglevel trace",
"tests:android:test:debug": "cd example && yarn detox test --configuration android.emu.debug --inspect",
"tests:android:test-reuse": "cd example && yarn detox test --configuration android.emu.debug --reuse",
"tests:android:test-cover": "cd example && ./node_modules/.bin/nyc yarn detox test --loglevel trace --configuration android.emu.debug",
"tests:android:test-cover-reuse": "cd example && ./node_modules/.bin/nyc yarn detox test --configuration android.emu.debug --reuse",
"tests:ios:build": "cd example && yarn detox build --configuration ios.sim.debug",
"tests:ios:build-release": "cd example && yarn detox build --configuration ios.sim.release",
"tests:ios:test": "cd example && yarn detox test --configuration ios.sim.debug --loglevel warn",
"tests:ios:test:debug": "cd example && yarn detox test --configuration ios.sim.debug --loglevel warn --inspect",
"tests:ios:test-reuse": "cd example && yarn detox test --configuration ios.sim.debug --reuse --loglevel warn",
"tests:ios:test-cover": "cd example && ./node_modules/.bin/nyc yarn detox test --configuration ios.sim.debug",
"tests:ios:test-cover-reuse": "cd example && node_modules/.bin/nyc yarn detox test --configuration ios.sim.debug --reuse --loglevel warn",
"tests:ios:pod:install": "cd example && cd ios && rm -rf example.xcworkspace && rm -f Podfile.lock && pod install --repo-update && cd .."
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.8",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.3",
"@types/react": "^17.0.27",
"@types/react-native": "^0.65.4",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-jest": "^27.2.4",
"clang-format": "^1.4.0",
"codecov": "^3.8.3",
"conventional-changelog-cli": "^2.0.34",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.5.2",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.26.1",
"genversion": "^3.0.1",
"google-java-format": "^1.0.1",
"inquirer": "^8.1.5",
"jest": "^27.2.4",
"lerna": "4.0.0",
"prettier": "^2.4.1",
"react": "^17.0.2",
"react-native": "0.66.0",
"rimraf": "^3.0.2",
"shelljs": "^0.8.3",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
}
}