forked from getsentry/sentry-react-native
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.33 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
{
"name": "react-native-sentry",
"homepage": "https://github.com/getsentry/react-native-sentry",
"repository": "https://github.com/getsentry/react-native-sentry",
"version": "0.43.2",
"description": "Official Sentry SDK for react-native",
"typings": "lib/Sentry.d.ts",
"types": "./lib/Sentry.d.ts",
"typescript": {
"definition": "lib/Sentry.d.ts"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test:typescript": "node_modules/typescript/bin/tsc --noImplicitAny --allowJs typescript/Sentry-tests.ts"
},
"keywords": [
"react-native",
"sentry",
"crashreporting",
"ios"
],
"author": "Sentry",
"license": "MIT",
"peerDependencies": {
"react-native": ">=0.56.0"
},
"dependencies": {
"@sentry/wizard": "^0.13.0",
"raven-js": "^3.27.1"
},
"rnpm": {
"commands": {
"postlink": "node node_modules/@sentry/wizard/dist/bin.js -i reactNative -p ios android",
"postunlink": "node node_modules/@sentry/wizard/dist/bin.js -i reactNative -p ios android --uninstall"
},
"android": {
"packageInstance": "new RNSentryPackage()"
},
"ios": {
"sharedLibraries": [
"libz"
]
}
},
"devDependencies": {
"prettier": "^1.12.1",
"replace-in-file": "^3.4.0",
"typescript": "^2.8.3"
}
}