forked from react-native-maps/react-native-maps
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 2 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
{
"name": "react-native-maps",
"description": "React Native Mapview component for iOS + Android",
"main": "index.js",
"author": "Leland Richardson <[email protected]>",
"version": "0.27.1",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"run:packager": "./node_modules/react-native/scripts/packager.sh",
"run:ios": "react-native run-ios --project-path ./example/ios",
"start:android": "adb shell am start -n com.airbnb.android.react.maps.example/.MainActivity",
"run:android": "./gradlew installDebug && npm run start:android",
"lint": "./node_modules/eslint/bin/eslint.js .",
"build": "npm run build:js && npm run build:android && npm run build:ios",
"build:js": "exit 0",
"build:ios": "bundle install --path ./example/ios/bundles && bundle exec pod install --project-directory=./example/ios/",
"build:android": "./gradlew :react-native-maps:assembleDebug",
"ci": "npm run lint",
"preversion": "./scripts/update-version.js"
},
"repository": {
"type": "git",
"url": "https://github.com/react-native-community/react-native-maps"
},
"keywords": [
"react",
"react-native",
"react-component",
"map",
"mapview",
"google-maps",
"mapkit"
],
"peerDependencies": {
"prop-types": "^15.0 || ^16.0",
"react": ">= 16.0 || < 17.0",
"react-native": ">= 0.51"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/runtime": "^7.4.3",
"@react-native-community/eslint-config": "0.0.5",
"babel-eslint": "^10.0.1",
"babel-plugin-module-resolver": "^3.2.0",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-react": "^7.13.0",
"gitbook-cli": "^2.3.0",
"lodash": "^4.17.2",
"metro-react-native-babel-preset": "^0.53.1",
"react": "16.8.3",
"react-native": "0.59.3"
},
"dependencies": {
"@types/geojson": "^7946.0.7"
}
}