forked from react-native-maps/react-native-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.4 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-maps",
"description": "React Native Mapview component for iOS + Android",
"main": "index.js",
"author": "Leland Richardson <[email protected]>",
"version": "0.30.1",
"license": "MIT",
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js .",
"ci": "npm run lint",
"test": "jest"
},
"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 || < 18.0",
"react-native": ">= 0.51",
"react-native-web": ">= 0.11"
},
"devDependencies": {
"@react-native-community/eslint-config": "^3.0.1",
"babel-jest": "^27.3.1",
"eslint": "7.32.0",
"jest": "^27.3.1",
"react": "^17.0.2",
"react-native": "^0.66.3",
"typescript": "^4.4.3"
},
"dependencies": {
"deprecated-react-native-prop-types": "^2.3.0",
"@types/geojson": "^7946.0.7"
},
"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)"
]
}
}