forked from react-native-maps/react-native-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.92 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.92 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
{
"name": "react-native-maps",
"description": "React Native Mapview component for iOS + Android",
"main": "src/index.js",
"types": "index.d.ts",
"author": "Leland Richardson <leland.m.richardson@gmail.com>",
"version": "0.31.1",
"license": "MIT",
"scripts": {
"lint": "eslint . --max-warnings 0",
"test": "jest",
"prepare": "husky install",
"release": "semantic-release"
},
"files": [
"index.d.ts",
"android",
"ios",
"src",
"react-native-google-maps.podspec",
"react-native-maps.podspec",
"!android/build",
"!ios/build",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__"
],
"repository": {
"type": "git",
"url": "https://github.com/react-native-maps/react-native-maps"
},
"keywords": [
"react",
"react-native",
"react-component",
"map",
"mapview",
"google-maps",
"mapkit"
],
"peerDependencies": {
"react": ">= 16.0",
"react-native": ">= 0.51",
"react-native-web": ">= 0.11"
},
"peerDependenciesMeta": {
"react-native-web": {
"optional": true
}
},
"devDependencies": {
"@commitlint/cli": "16.2.3",
"@commitlint/config-conventional": "16.2.1",
"@react-native-community/eslint-config": "^3.0.1",
"babel-jest": "^27.3.1",
"eslint": "7.32.0",
"husky": "7.0.4",
"jest": "^27.3.1",
"react": "^17.0.2",
"react-native": "^0.66.3",
"semantic-release": "19.0.2",
"typescript": "^4.4.3"
},
"dependencies": {
"@types/geojson": "^7946.0.7",
"deprecated-react-native-prop-types": "^2.3.0"
},
"jest": {
"preset": "react-native",
"testRegex": "<rootDir>/__tests__/.*|(\\.|/)(test|spec)\\.jsx?$",
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/react-native/jest/preprocessor.js"
},
"moduleFileExtensions": [
"js"
],
"transformIgnorePatterns": [
"node_modules/(?!@react-native|react-native)"
]
}
}