forked from bugsnag/bugsnag-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.3 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
{
"name": "@bugsnag/react-native",
"version": "8.1.2",
"main": "src/notifier.js",
"types": "types/bugsnag.d.ts",
"description": "Bugsnag error reporter for React Native applications",
"keywords": [
"bugsnag",
"react native",
"exception",
"error",
"javascript",
"monitoring",
"reporting",
"stability",
"mobile"
],
"homepage": "https://www.bugsnag.com/",
"repository": {
"type": "git",
"url": "[email protected]:bugsnag/bugsnag-js.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"src",
"types/bugsnag.d.ts",
"android/build.gradle",
"android/proguard-rules.pro",
"android/src/main",
"android/src/newarch",
"android/src/oldarch",
"android/com/bugsnag",
"ios/BugsnagReactNative",
"ios/BugsnagReactNative.xcodeproj",
"ios/vendor/bugsnag-cocoa/Bugsnag/**/*.{h,m,mm,cpp,c}",
"ios/vendor/bugsnag-cocoa/Bugsnag.xcodeproj",
"ios/vendor/bugsnag-cocoa/Framework/{Info.plist,module.modulemap}",
"ios/vendor/bugsnag-cocoa/Bugsnag.podspec.json",
"ios/vendor/bugsnag-cocoa/Bugsnag/resources/PrivacyInfo.xcprivacy",
"BugsnagReactNative.podspec",
"react-native.config.js",
"bugsnag-react-native.gradle",
"bugsnag-react-native-xcode.sh"
],
"author": "Bugsnag",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.0.0",
"tslint": "^5.12.1",
"typescript": "^3.3.3"
},
"dependencies": {
"@bugsnag/core": "^8.1.1",
"@bugsnag/delivery-react-native": "^8.1.1",
"@bugsnag/plugin-console-breadcrumbs": "^8.1.1",
"@bugsnag/plugin-network-breadcrumbs": "^8.1.1",
"@bugsnag/plugin-react": "^8.1.1",
"@bugsnag/plugin-react-native-client-sync": "^8.1.1",
"@bugsnag/plugin-react-native-event-sync": "^8.1.1",
"@bugsnag/plugin-react-native-global-error-handler": "^8.1.1",
"@bugsnag/plugin-react-native-hermes": "^8.1.1",
"@bugsnag/plugin-react-native-session": "^8.1.1",
"@bugsnag/plugin-react-native-unhandled-rejection": "^8.1.1",
"iserror": "^0.0.2"
},
"scripts": {
"prepare": "bash prepare-android-vendor.sh",
"test:types": "tsc -p tsconfig.json"
},
"codegenConfig": {
"name": "BugsnagReactNativeSpec",
"type": "modules",
"jsSrcsDir": "src",
"android": {
"javaPackageName": "com.bugsnag.android"
}
}
}