-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
94 lines (94 loc) · 2.45 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "react-native-radar",
"description": "React Native module for Radar, the leading geofencing and location tracking platform",
"homepage": "https://radar.com",
"license": "Apache-2.0",
"version": "3.18.8",
"main": "dist/index.js",
"files": [
"/android",
"/ios",
"README.md",
"react-native-radar.podspec",
"/dist",
"app.plugin.js",
"/plugin/build"
],
"types": "dist/index.d.ts",
"scripts": {
"test": "jest ./test/*.test.js",
"check-latest-tag": "node ./scripts/check-latest-tag.cjs",
"check-beta-tag": "node ./scripts/check-beta-tag.cjs",
"build": "tsc",
"copy-assets": "./copyAssets.sh",
"build-plugin": "tsc --build plugin/",
"build-all": "npm run build && npm run build-plugin && npm run copy-assets"
},
"jest": {
"preset": "react-native",
"clearMocks": true,
"reporters": [
"default",
"jest-junit"
],
"modulePathIgnorePatterns": [
"example",
"example2"
],
"setupFiles": [
"./test/jest.setup.js"
]
},
"peerDependencies": {
"@maplibre/maplibre-react-native": ">=9.0.1 || >=10.0.0-alpha",
"expo": ">=43.0.5",
"react": ">= 16.8.6",
"react-native": ">= 0.60.0"
},
"peerDependenciesMeta": {
"@maplibre/maplibre-react-native": {
"optional": true
},
"expo": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.4.2",
"braces": ">=2.3.2",
"eslint": "^5.6.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1",
"expo": "^51.0.0",
"expo-module-scripts": "^3.5.2",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"logkitty": ">=0.7.1",
"metro-react-native-babel-preset": "^0.51.1",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-native": "^0.74.5",
"typescript": "^5.3.3"
},
"bugs": {
"url": "https://github.com/radarlabs/react-native-radar/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/radarlabs/react-native-radar.git"
},
"dependencies": {
"@babel/runtime": "^7.21.0",
"@react-native-community/netinfo": "^7.1.3",
"radar-sdk-js": "^3.7.1"
}
}