forked from getsentry/sentry-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.26 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.12.5",
"description": "Official Sentry client for react-native",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"precommit": "lint-staged"
},
"keywords": [
"react-native",
"sentry",
"crashreporting",
"ios"
],
"author": "Sentry",
"license": "MIT",
"peerDependencies": {
"react-native": ">=0.38.0"
},
"dependencies": {
"chalk": "^1.1.1",
"glob": "7.1.1",
"inquirer": "3.0.6",
"raven-js": "^3.15.0",
"sentry-cli-binary": "1.13.1",
"xcode": "0.9.3"
},
"rnpm": {
"commands": {
"postlink": "node node_modules/react-native-sentry/scripts/postlink",
"postunlink": "node node_modules/react-native-sentry/scripts/postunlink"
},
"android": {
"packageInstance": "new RNSentryPackage(MainApplication.this)"
}
},
"devDependencies": {
"husky": "^0.13.4",
"lint-staged": "^3.6.0",
"prettier": "^1.4.2"
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote --bracket-spacing=false --print-width=90",
"git add"
]
}
}