forked from qiuxiang/react-native-amap-geolocation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "react-native-amap-geolocation",
"description": "React Native geolocation module for Android + iOS",
"keywords": [
"react-native",
"amap",
"location",
"geolocation"
],
"version": "1.1.2",
"author": "7c00 <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/qiuxiang/react-native-amap-geolocation"
},
"license": "MIT",
"files": [
"react-native.config.js",
"lib/js",
"lib/ios",
"lib/android/src",
"lib/android/build.gradle"
],
"main": "lib/js",
"scripts": {
"dev": "tsc -w",
"build": "tsc",
"build-docs": "npx typedoc --out docs/api --excludeNotExported --module commonjs --mode file src",
"start": "react-native start",
"reload": "adb reverse tcp:8081 tcp:8081 && adb shell input text rr",
"android": "react-native run-android",
"release-android": "react-native run-android --variant=release",
"ios": "react-native run-ios"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/runtime": "^7.6.2",
"@types/react-native": "^0.62.13",
"metro-react-native-babel-preset": "^0.58.0",
"react": "16.11.0",
"react-native": "0.62.2"
},
"prettier": {
"printWidth": 100
}
}