forked from douglasjunior/react-native-get-location
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.42 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.42 KB
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
{
"name": "react-native-get-location",
"displayName": "React-Native Get Location",
"version": "6.0.1",
"description": "⚛ Simple to use React Native library to get device location for Android and iOS.",
"main": "src",
"react-native": "src",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/douglasjunior/react-native-get-location.git"
},
"keywords": [
"react-native",
"android",
"ios",
"geolocation",
"location",
"gps"
],
"author": {
"name": "Douglas Nassif Roma Junior",
"email": "nassifrroma@gmail.com",
"url": "http://douglasjunior.me"
},
"bugs": {
"url": "https://github.com/douglasjunior/react-native-get-location/issues"
},
"homepage": "https://github.com/douglasjunior/react-native-get-location",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"codegenConfig": {
"name": "rngetlocation_codegen",
"type": "modules",
"jsSrcsDir": "./src/specs",
"android": {
"javaPackageName": "com.github.douglasjunior.reactNativeGetLocation"
},
"ios": {
"modulesProvider": {
"RNGetLocation": "RNGetLocationTurbo"
}
}
},
"scripts": {
"build": "tsc",
"publish-script": "node scripts/publish.js"
},
"peerDependencies": {
"react-native": ">=0.71"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@react-native-community/cli": "18.0.1",
"@react-native/babel-preset": "0.79.5",
"@react-native/eslint-config": "0.79.5",
"@react-native/metro-config": "0.79.5",
"@react-native/typescript-config": "0.79.5",
"@types/jest": "^29.5.13",
"@types/react": "^19.0.0",
"@types/react-test-renderer": "^19.0.0",
"eslint": "^8.19.0",
"jest": "^29.6.3",
"prettier": "2.8.8",
"react": "19.0.0",
"react-native": "0.79.5",
"react-test-renderer": "19.0.0",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18"
},
"resolutions": {
"**/@typescript-eslint/typescript-estree/minimatch": "^9.0.7",
"**/test-exclude/glob/minimatch": "^3.1.4",
"**/@react-native-community/cli-config-android/fast-xml-parser": "^4.5.5",
"**/@react-native-community/cli-platform-apple/fast-xml-parser": "^4.5.5",
"**/flat-cache/flatted": "^3.4.2",
"**/micromatch/picomatch": "^2.3.2",
"**/jest-util/picomatch": "^2.3.2"
}
}