-
-
Notifications
You must be signed in to change notification settings - Fork 870
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.1 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-native-google-places-autocomplete",
"version": "2.6.5",
"description": "Customizable Google Places autocomplete component for iOS and Android React-Native apps",
"main": "GooglePlacesAutocomplete.js",
"types": "GooglePlacesAutocomplete.d.ts",
"sideEffects": false,
"files": [
"GooglePlacesAutocomplete.js",
"GooglePlacesAutocomplete.d.ts",
"src/",
"images/",
"README.md",
"LICENSE"
],
"scripts": {
"lint": "eslint . && prettier --write .",
"release": "npx release-it",
"prettier": "prettier --write .",
"prepare": "husky install",
"test": "jest",
"test:watch": "jest --watch",
"typecheck": "tsc --noEmit"
},
"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",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-react": "^7.28.0",
"@react-native-community/eslint-config": "2.0.0",
"@react-native/babel-preset": "0.86.3",
"@react-native/jest-preset": "0.86.3",
"@testing-library/react-native": "^13.3.3",
"@types/react": "^19.2.0",
"babel-jest": "^29.7.0",
"eslint": "7.10.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "10.4.0",
"prettier": "2.1.2",
"qs": "^6.14.1",
"react": "19.2.3",
"react-native": "0.86.3",
"react-test-renderer": "19.2.3",
"typescript": "^5.6.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">= 0.59"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
}
}