forked from invertase/react-native-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.43 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
{
"name": "@react-native-firebase/crashlytics",
"version": "20.1.0",
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
"description": "React Native Firebase - Firebase Crashlytics is a lightweight, realtime crash reporter that helps you track, prioritize, and fix stability issues that erode your app quality. React Native Firebase provides automatic crash reporting for both native and JavaScript errors, including unhandled promise rejections.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "genversion --semi lib/version.js",
"build:clean": "rimraf android/build && rimraf ios/build",
"build:plugin": "rimraf plugin/build && tsc --build plugin",
"lint:plugin": "eslint plugin/src/*",
"prepare": "yarn run build && yarn run build:plugin"
},
"repository": {
"type": "git",
"url": "https://github.com/invertase/react-native-firebase/tree/main/packages/crashlytics"
},
"license": "Apache-2.0",
"keywords": [
"react",
"react-native",
"firebase",
"fabric",
"crash",
"bug",
"error",
"reporting",
"crashlytics"
],
"peerDependencies": {
"@react-native-firebase/app": "20.1.0",
"expo": ">=47.0.0"
},
"dependencies": {
"stacktrace-js": "^2.0.2"
},
"devDependencies": {
"expo": "^50.0.19"
},
"peerDependenciesMeta": {
"expo": {
"optional": true
}
},
"publishConfig": {
"access": "public"
}
}