forked from tschoffelen/react-native-map-link
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.46 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
{
"name": "react-native-map-link",
"version": "2.9.0",
"description": "Open the map app of the user's choice with a specific location",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/includable/react-native-map-link.git"
},
"scripts": {
"lint": "eslint src --max-warnings=0 && eslint tests --max-warnings=0",
"test": "jest"
},
"keywords": [
"react-native",
"react-component",
"maps",
"link",
"linking",
"react",
"ios",
"android"
],
"author": "Thomas Schoffelen <[email protected]> (https://includable.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/includable/react-native-map-link/issues"
},
"homepage": "https://github.com/includable/react-native-map-link#readme",
"dependencies": {
"prop-types": "^15.8.1",
"react-native-modal": "^13.0.1"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.40.0"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/eslint-plugin": "^7.16.5",
"@babel/runtime": "^7.17.2",
"@react-native-community/eslint-config": "^3.0.1",
"babel-jest": "^27.5.1",
"eslint": "^8.10.0",
"eslint-plugin-flowtype": "^8.0.3",
"jest": "^27.5.1",
"metro-react-native-babel-preset": "^0.69.0",
"react-native": "^0.67.3"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./tests/setup.js"
]
}
}