forked from react-native-maps/react-native-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.24 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
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
87
88
89
{
"name": "react-native-maps",
"description": "React Native Mapview component for iOS + Android",
"source": "src/index",
"main": "lib/index.js",
"author": "Leland Richardson <[email protected]>",
"homepage": "https://github.com/react-native-maps/react-native-maps#readme",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"lint": "eslint . --max-warnings 0",
"tscheck": "tsc --noEmit",
"format-check": "prettier --check .",
"build": "tsc --project tsconfig.build.json",
"test": "jest",
"prepare": "husky install",
"release": "semantic-release",
"bundle-install": "cd example && bundle install",
"pod-install": "cd example/ios && bundle exec pod install",
"bootstrap": "yarn --cwd example && yarn && yarn bundle-install && yarn pod-install"
},
"files": [
"lib",
"android",
"ios",
"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": ">= 17.0.1",
"react-native": ">= 0.64.3",
"react-native-web": ">= 0.11"
},
"peerDependenciesMeta": {
"react-native-web": {
"optional": true
}
},
"devDependencies": {
"@commitlint/cli": "17.6.1",
"@commitlint/config-conventional": "17.6.1",
"@react-native/eslint-config": "^0.73.1",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/jest": "29.5.1",
"@types/react-native": "0.72.8",
"babel-jest": "^29.6.3",
"detox": "20.7.0",
"eslint": "8.38.0",
"husky": "8.0.3",
"jest": "^29.6.3",
"prettier": "2.8.8",
"react": "18.2.0",
"react-native": "0.73.0",
"semantic-release": "21.1.2",
"typescript": "5.0.4"
},
"dependencies": {
"@types/geojson": "^7946.0.13"
},
"jest": {
"preset": "react-native",
"testPathIgnorePatterns": [
"/node_modules/",
"e2e"
]
},
"engines": {
"node": ">=18"
}
}