This repository has been archived by the owner on Oct 17, 2023. It is now read-only.
forked from Instabug/Instabug-React-Native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.69 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
52
53
54
55
56
{
"name": "instabug-reactnative",
"version": "9.1.10",
"description": "React Native plugin for integrating the Instabug SDK",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Instabug/instabug-reactnative.git"
},
"keywords": [
"react-native",
"bug",
"reporting",
"feedback",
"instabug",
"sdk"
],
"author": "Hossam Hassan && Yousef Hamza",
"license": "MIT",
"bugs": {
"url": "https://github.com/Instabug/instabug-reactnative/issues"
},
"homepage": "https://github.com/Instabug/instabug-reactnative#readme",
"rnpm": {
"commands": {
"postlink": "node node_modules/instabug-reactnative/link_bridge.js",
"preunlink": "node node_modules/instabug-reactnative/unlink_bridge.js"
},
"android": {
"packageInstance": "\t\tnew RNInstabugReactnativePackage.Builder(\"YOUR_ANDROID_APPLICATION_TOKEN\",MainApplication.this)\n\t\t\t\t\t\t\t.setInvocationEvent(\"shake\")\n\t\t\t\t\t\t\t.setPrimaryColor(\"#1D82DC\")\n\t\t\t\t\t\t\t.setFloatingEdge(\"left\")\n\t\t\t\t\t\t\t.setFloatingButtonOffsetFromTop(250)\n\t\t\t\t\t\t\t.build()"
}
},
"devDependencies": {
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^24.8.0",
"codecov": "~3.7.0",
"jest": "^24.8.0",
"metro-react-native-babel-preset": "0.51.1",
"react": "^16.8.6",
"react-native": "^0.59.8",
"sinon": "^7.3.2",
"wait-for-expect": "^1.2.0"
},
"jest": {
"preset": "react-native",
"modulePathIgnorePatterns": [
"InstabugSample"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"scripts": {
"test": "jest && ./node_modules/.bin/codecov"
}
}