-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpackage.json
61 lines (61 loc) · 1.5 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
{
"name": "react-native-open-maps",
"version": "0.4.3",
"description": "A simple react-native library to perform cross-platform map actions (Google, Apple, or Yandex Maps)",
"main": "index.js",
"directories": {
"example": "example"
},
"scripts": {
"test": "jest",
"example-test": "cp ./index.js ./example/LocalTest.js",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"react-native",
"maps",
"open link",
"apple maps",
"google maps",
"map deep links",
"map url scheme"
],
"files": [
"index.js",
"index.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/brh55/react-native-open-maps.git"
},
"homepage": "https://github.com/brh55/react-native-open-maps#readme",
"license": "MIT",
"bugs": {
"url": "https://github.com/brh55/react-native-open-maps/issues"
},
"author": "Brandon Him",
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"babel-jest": "^26.6.3",
"coveralls": "^3.1.1",
"jest": "^26.3.0",
"metro-react-native-babel-preset": "^0.66.0",
"react-native": "^0.65.0",
"react-native-codegen": "^0.0.7",
"react-test-renderer": "17.0.2"
},
"jest": {
"preset": "react-native",
"cacheDirectory": "./cache/jest",
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules"
],
"roots": [
"<rootDir>/__tests__"
]
},
"dependencies": {
"query-string": "^7.1.0"
}
}