forked from sickdyd/react-search-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.13 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
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
80
81
82
83
{
"name": "react-search-autocomplete",
"author": "Reale Roberto Josef Antonio",
"license": "MIT",
"version": "8.5.2",
"description": "A search box for React",
"main": "dist/index.js",
"scripts": {
"test": "jest --config=jest.config.js --verbose --runInBand ",
"coverage": "jest --config=jest.config.js --coverage",
"deploy": "yarn build && npm publish",
"build": "rm -rf ./dist && tsc",
"build-watch": "rm -rf ./dist && tsc --watch",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sickdyd/react-search-autocomplete.git"
},
"keywords": [
"search",
"searchbox",
"autocomplete",
"suggestion",
"suggestions",
"google",
"autosuggest",
"autocomplete",
"auto suggest",
"auto complete",
"react autosuggest",
"react autocomplete",
"react auto suggest",
"react auto complete"
],
"browserslist": {
"production": [
"> 0.2%",
"not dead",
"not op_mini all",
"not ie <= 11"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"bugs": {
"url": "https://github.com/sickdyd/react-search-autocomplete/issues"
},
"homepage": "https://github.com/sickdyd/react-search-autocomplete#readme",
"dependencies": {
"fuse.js": "^6.5.3",
"styled-components": "^5.3.3"
},
"peerDependencies": {
"react": "^17.0.2 || ^16.0.2 || ^18.0.0",
"react-dom": "^17.0.2 || ^16.0.2 || ^18.0.0"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.16.7",
"@testing-library/jest-dom": "^5.12.0",
"@testing-library/react": "^11.2.6",
"@types/styled-components": "^5.1.26",
"babel-minify": "^0.5.1",
"jest": "^27.5.1",
"jest-localstorage-mock": "^2.4.6",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-test-renderer": "^17.0.2",
"typescript": "^4.9.3"
},
"files": [
"dist/*",
"index.d.ts"
]
}