-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 881 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 881 Bytes
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
{
"name": "rollbar-react-native",
"version": "1.0.1",
"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 --presets=react-native -s -d lib"
},
"peerDependencies": {
"react-native": ">=0.50",
"rollbar": "^2.26.1"
},
"dependencies": {
"buffer": "^4.9.1 || ^5.0.7",
"promise": ">=7.1.1",
"url": "^0.11.0"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.1",
"babel-preset-react-native": "^5.0.2"
},
"rnpm": {
"android": {
"packageInstance": "RollbarReactNative.getPackage()",
"packageImportPath": "import com.rollbar.RollbarReactNative;"
}
}
}