-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
58 lines (58 loc) · 1.5 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
{
"name": "react-native-location-view",
"version": "0.3.0",
"description": "A package to help pick user location with autocomplete and current location support. Uses react-native-maps",
"main": "index.js",
"author": "Hunaid Hassan <hhunaid@gmail.com>",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/superapp/react-native-location-view"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"src/**/*.js\"",
"lint": "eslint --fix",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"autocomplete",
"google",
"places",
"react-component",
"react-native",
"ios",
"android",
"location",
"location-picker"
],
"bugs": {
"url": "https://github.com/superapp/react-native-location-view"
},
"dependencies": {
"axios": "^0.19.0",
"prop-types": "^15.6.0",
"react-native-simple-events": "^1.0.1"
},
"files": [
"index.js",
"src/*",
"utils/*"
],
"peerDependencies": {
"react-native": ">= 0.50",
"react-native-maps": ">= 0.19.0",
"react-native-vector-icons": "^4.4.3",
"@react-native-community/geolocation": "^2.0.0"
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.18.2"
}
}