forked from qiuxiang/react-native-amap3d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.46 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
{
"name": "react-native-amap3d",
"version": "0.12.1",
"description": "react-native 高德地图组件,支持 Android + iOS",
"author": "Qiu Xiang <[email protected]>",
"license": "MIT",
"keywords": [
"react-native",
"amap",
"maps",
"mapview"
],
"main": "lib/js",
"files": [
"lib/js",
"lib/android/src",
"lib/android/build.gradle",
"lib/ios"
],
"repository": {
"type": "git",
"url": "https://github.com/qiuxiang/react-native-amap3d"
},
"scripts": {
"test": "eslint . && flow",
"start": "node node_modules/react-native/local-cli/cli.js start",
"run-android": "node node_modules/react-native/local-cli/cli.js run-android",
"log-android": "node node_modules/react-native/local-cli/cli.js log-android",
"reload-android": "adb reverse tcp:8081 tcp:8081 && adb shell input text rr",
"run-ios": "node node_modules/react-native/local-cli/cli.js run-ios"
},
"peerDependencies": {
"react-native": ">=0.47"
},
"devDependencies": {
"babel-eslint": "^8.1.2",
"babel-preset-react-native": "^4.0.0",
"eslint": "^4.18.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"flow-bin": "^0.66.0",
"react": "16.2.0",
"react-native": "0.52.2",
"react-navigation": "^1.0.3"
},
"presets": [
"react-native"
],
"rnpm": {
"android": {
"sourceDir": "lib/android"
}
}
}