forked from rollbar/rollbar-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 860 Bytes
/
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
{
"name": "rollbar-react-native",
"version": "0.3.3",
"description": "Library for reporting errors to Rollbar from React Native apps",
"main": "index.js",
"repository": "https://github.com/rollbar/rollbar-react-native.git",
"license": "MIT",
"keywords": [
"react-native"
],
"scripts": {
"prepublish": "mkdir -p lib && babel src/Rollbar.js --presets=react-native -s -o lib/Rollbar.js"
},
"peerDependencies": {
"react-native": ">=0.50"
},
"dependencies": {
"buffer": "^5.0.7",
"promise": "^8.0.1",
"rollbar": "^2.4.4",
"url": "^0.11.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-react-native": "^3.0.2"
},
"rnpm": {
"android": {
"packageInstance": "RollbarReactNative.getPackage()",
"packageImportPath": "import com.rollbar.RollbarReactNative;"
}
}
}