-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.35 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
{
"name": "react-native-google-places-autocomplete",
"version": "2.5.1",
"description": "Customizable Google Places autocomplete component for iOS and Android React-Native apps",
"main": "GooglePlacesAutocomplete.js",
"types": "GooglePlacesAutocomplete.d.ts",
"scripts": {
"lint": "eslint . && prettier --write .",
"release": "npx release-it"
},
"author": "Farid from Safi",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/FaridSafi/react-native-google-places-autocomplete.git"
},
"keywords": [
"autocomplete",
"google",
"places",
"react-component",
"react-native",
"ios",
"android"
],
"bugs": {
"url": "https://github.com/FaridSafi/react-native-google-places-autocomplete/issues"
},
"homepage": "https://github.com/FaridSafi/react-native-google-places-autocomplete#readme",
"dependencies": {
"lodash.debounce": "^4.0.8",
"prop-types": "^15.7.2",
"qs": "~6.9.1"
},
"devDependencies": {
"@react-native-community/eslint-config": "2.0.0",
"eslint": "7.10.0",
"husky": "4.3.0",
"lint-staged": "10.4.0",
"prettier": "2.1.2",
"typescript": "^3.8.3"
},
"peerDependencies": {
"react-native": ">= 0.59"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*/**": "yarn lint"
}
}