forked from getsentry/sentry-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.52 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.52 KB
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
{
"name": "react-native-sentry",
"homepage": "https://github.com/getsentry/react-native-sentry",
"repository": "https://github.com/getsentry/react-native-sentry",
"version": "0.41.1",
"description": "Official Sentry SDK for react-native",
"typings": "lib/Sentry.d.ts",
"typescript": {
"definition": "lib/Sentry.d.ts"
},
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"precommit": "lint-staged",
"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.12.1",
"raven-js": "^3.24.2"
},
"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": {
"husky": "^0.14.3",
"lint-staged": "^7.0.4",
"prettier": "^1.12.1",
"replace-in-file": "^3.4.0",
"typescript": "^2.8.3"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote --bracket-spacing=false --print-width=90",
"git add"
]
}
}