forked from onmotion/react-native-autocomplete-dropdown
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.97 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.97 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
{
"name": "react-native-autocomplete-dropdown",
"version": "3.1.4",
"description": "Dropdown Item picker with search and autocomplete (typeahead) functionality for react native",
"main": "src/index.js",
"typings": "src/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/onmotion/react-native-autocomplete-dropdown.git"
},
"homepage": "https://github.com/onmotion/react-native-autocomplete-dropdown",
"keywords": [
"react-native",
"dropdown",
"autocomplete",
"picker",
"typeahead",
"select",
"react native typeahead",
"react native autocomplete",
"react native dropdown",
"react native picker",
"react native select"
],
"author": "Alexandr Kozhevnikov <onmotion1@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/eslint-parser": "^7.20.0",
"@babel/preset-react": "^7.20.0",
"@types/react": "^18.0.24",
"@types/react-native": "^0.72.5",
"eslint": "^8.19.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-unused-imports": "^3.0.0",
"eslint-plugin-react": "^7.33.2",
"prettier": "^3.0.0",
"typescript": "4.8.4",
"@react-native/eslint-config": "^0.72.2"
},
"peerDependencies": {
"react": "*",
"react-native": ">=0.60.0",
"react-native-svg": ">=13.0.0"
},
"dependencies": {
"lodash.debounce": "*",
"react-native-animatable": "^1.3.3",
"react-native-feather": "^1.1.2",
"react-native-size-matters": "^0.4.0"
},
"bugs": {
"url": "https://github.com/onmotion/react-native-autocomplete-dropdown/issues"
},
"directories": {
"example": "example"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ."
}
}