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) · 1.87 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 <leland.m.richardson@gmail.com>",
"version": "0.13.1",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"run:packager": "./node_modules/react-native/packager/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": "eslint ./",
"build": "npm run build:js && npm run build:android && npm run build:ios",
"build:js": "exit 0",
"build:ios": "bundle install --binstubs ./examples/ios && 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/airbnb/react-native-maps"
},
"keywords": [
"react",
"react-native",
"react-component",
"map",
"mapview",
"google-maps",
"mapkit"
],
"peerDependencies": {
"react": ">=15.4.0",
"react-native": ">=0.40"
},
"devDependencies": {
"babel-eslint": "^6.1.2",
"babel-plugin-module-resolver": "^2.3.0",
"babel-preset-airbnb": "^1.1.1",
"babel-preset-react-native": "1.9.0",
"eslint": "^3.3.1",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-prefer-object-spread": "^1.1.0",
"eslint-plugin-react": "^6.1.2",
"gitbook-cli": "^2.3.0",
"lodash": "^4.17.2",
"react": "~15.4.1",
"react-native": "^0.42.0"
},
"rnpm": {
"android": {
"sourceDir": "./android"
}
}
}