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
92 lines (92 loc) · 2.23 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.23 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@sentry/react-native",
"homepage": "https://github.com/getsentry/sentry-react-native",
"repository": "https://github.com/getsentry/sentry-react-native",
"version": "1.2.1",
"description": "Official Sentry SDK for react-native",
"typings": "dist/js/index.d.ts",
"types": "dist/js/index.d.ts",
"typescript": {
"definition": "dist/js/index.d.ts"
},
"main": "dist/js/index.js",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build:watch": "tsc -p tsconfig.build.json -w --preserveWatchOutput",
"clean": "rimraf dist coverage",
"test": "jest",
"test:watch": "jest --watch",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect"
},
"keywords": [
"react-native",
"sentry",
"crashreporting",
"ios"
],
"publishConfig": {
"access": "public"
},
"author": "Sentry",
"license": "MIT",
"peerDependencies": {
"react-native": ">=0.56.0"
},
"dependencies": {
"@sentry/browser": "^5.11.1",
"@sentry/core": "^5.11.1",
"@sentry/integrations": "^5.11.1",
"@sentry/types": "^5.11.0",
"@sentry/utils": "^5.11.1",
"@sentry/wizard": "^1.0.2"
},
"devDependencies": {
"@sentry/typescript": "5.10.0",
"@types/jest": "^24.0.25",
"@types/react-native": "^0.60.23",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"replace-in-file": "^4.2.0",
"rimraf": "^3.0.0",
"snyk": "^1.256.0",
"ts-jest": "^24.3.0",
"tslint": "^5.20.1",
"typescript": "^3.4.5"
},
"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"
]
}
},
"jest": {
"collectCoverage": true,
"transform": {
"^.+\\.ts$": "ts-jest"
},
"moduleFileExtensions": [
"js",
"ts"
],
"testEnvironment": "node",
"testMatch": [
"**/*.test.ts"
],
"globals": {
"ts-jest": {
"tsConfig": "./tsconfig.json",
"diagnostics": false
}
}
},
"snyk": true
}