-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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
{
"name": "react-native-autocomplete-input",
"version": "4.2.0-rc.2",
"description": "Pure javascript autocomplete input for react-native",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run testonly",
"lint": "eslint ./*.js ./example/*.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/l-urence/react-native-autocomplete-input/issues"
},
"homepage": "https://github.com/l-urence/react-native-autocomplete-input#readme",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/runtime": "^7.5.5",
"@react-native-community/eslint-config": "^0.0.5",
"babel-jest": "^24.8.0",
"eslint": "^6.3.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.13.6",
"eslint-plugin-jsx-a11y": "^6.2.3",
"jest": "^24.8.0",
"metro-react-native-babel-preset": "^0.55.0",
"react": "^16.8.6",
"react-native": "^0.60.4",
"react-test-renderer": "16.8.6"
},
"jest": {
"preset": "react-native"
}
}