forked from bugsnag/bugsnag-react-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.54 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
57
58
{
"name": "bugsnag-react-native",
"homepage": "https://www.bugsnag.com/platforms/react-native-error-reporting/",
"repository": "https://github.com/bugsnag/bugsnag-react-native.git",
"bugs": "https://github.com/bugsnag/bugsnag-react-native/issues",
"version": "2.12.4",
"license": "MIT",
"main": "index.js",
"types": "index.d.ts",
"nativePackage": true,
"dependencies": {
"iserror": "^0.0.2",
"promise": "^7",
"prop-types": "^15.6.0"
},
"scripts": {
"prepublish": "mkdir -p lib && babel --source-maps --out-dir='lib' --ignore='__tests__' src",
"test:unit:js": "jest --coverage src/__tests__",
"test:lint:js": "standard",
"test:e2e:js": "bundle exec bugsnag-maze-runner --verbose",
"test:smoke:typescript": "tslint index.d.ts && tsc --strict test/app.ts"
},
"peerDependencies": {
"react-native": ">=0.40"
},
"rnpm": {
"ios": {
"project": "cocoa/BugsnagReactNative.xcodeproj",
"sharedLibraries": [
"libz"
]
},
"android": {
"packageInstance": "BugsnagReactNative.getPackage()",
"packageImportPath": "import com.bugsnag.BugsnagReactNative;"
}
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"lib",
"test",
"test-harness",
"examples",
"features"
]
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^8.2.2",
"babel-jest": "^21.0.2",
"babel-preset-react-native": "^1.9.1",
"jest": "^21.1.0",
"standard": "^11.0.0",
"tslint": "^5.8.0",
"typescript": "^2.6.1"
}
}