-
Notifications
You must be signed in to change notification settings - Fork 255
/
package.json
54 lines (54 loc) · 1.43 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-autocomplete-input",
"version": "5.1.0",
"description": "Pure javascript autocomplete input for react-native",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "npm run lint && npm run testonly",
"lint": "eslint",
"testonly": "jest",
"build": "rm -rf dist && tsc --project tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/byteburgers/react-native-autocomplete-input.git"
},
"files": [
"LICENSE",
"README.md",
"dist/index.js",
"dist/index.d.ts"
],
"keywords": [
"react-native",
"iOS",
"input",
"Android",
"autocomplete"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/byteburgers/react-native-autocomplete-input/issues"
},
"homepage": "https://github.com/byteburgers/react-native-autocomplete-input#readme",
"devDependencies": {
"@react-native/typescript-config": "^0.76.1",
"@testing-library/react-native": "^12.8.1",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.28",
"babel-jest": "^29.4.3",
"eslint": "^9.11.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"jest": "^29.4.3",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-native": "^0.76.1",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0"
},
"dependencies": {
"deprecated-react-native-prop-types": "^5.0.0"
}
}