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
61 lines (61 loc) · 1.73 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.73 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
60
61
{
"name": "react-native-sentry",
"version": "0.34.1",
"homepage": "https://github.com/whatever-company/react-native-sentry",
"repository": "https://github.com/whatever-company/react-native-sentry",
"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",
"preversion:changelog": "grep -q -F \"## v$npm_package_version\" CHANGELOG.md",
"version": "npm run preversion:changelog && node ./scripts/version-bump.js && git add -A",
"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.38.0"
},
"dependencies": {
"@sentry/wizard": "^0.8.1",
"raven-js": "^3.22.1"
},
"rnpm": {
"commands": {
"postlink": "node node_modules/@sentry/wizard/dist/bin.js -t reactNative -p ios android",
"postunlink": "node node_modules/@sentry/wizard/dist/bin.js -t reactNative -p ios android --uninstall"
},
"android": {
"packageInstance": "new RNSentryPackage(MainApplication.this)"
},
"ios": {
"sharedLibraries": [
"libz"
]
}
},
"devDependencies": {
"husky": "^0.14.3",
"lint-staged": "^6.0.1",
"prettier": "^1.10.2",
"replace-in-file": "^3.1.0",
"typescript": "^2.5.3"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote --bracket-spacing=false --print-width=90",
"git add"
]
}
}