forked from byteburgers/react-native-autocomplete-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.37 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
{
"name": "react-native-autocomplete-input",
"version": "5.1.0",
"description": "Pure javascript autocomplete input for react-native",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run testonly",
"lint": "eslint ./*.js ./__tests__/*.js",
"testonly": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mrlaessig/react-native-autocomplete-input.git"
},
"files": [
"LICENSE",
"README.md",
"index.js"
],
"keywords": [
"react-native",
"iOS",
"input",
"Android",
"autocomplete"
],
"author": "Laurence Bortfeld",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrlaessig/react-native-autocomplete-input/issues"
},
"homepage": "https://github.com/mrlaessig/react-native-autocomplete-input#readme",
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"eslint": "^7.23.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.23.1",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.65.2",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-native": "^0.64.0",
"react-test-renderer": "^17.0.2"
}
}