-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
85 lines (85 loc) · 2.19 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
84
85
{
"name": "react-autocomplete-hint",
"version": "2.0.0",
"description": "A React component for Autocomplete hint",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src/index.js",
"dist/src/index.d.ts",
"dist/src/utils.js",
"dist/src/IHintOption.d.ts"
],
"scripts": {
"build": "webpack",
"start:dev": "webpack-dev-server --open",
"start": "npm run build && npm run start:dev",
"jest": "./node_modules/jest/bin/jest.js",
"test": "jest --watch",
"coverage": "jest --coverage",
"prepublishOnly": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ejmudi/react-autocomplete-hint.git"
},
"author": "Ejenavi Mudiaga",
"license": "MIT",
"bugs": {
"url": "https://github.com/ejmudi/react-autocomplete-hint/issues"
},
"homepage": "https://github.com/ejmudi/react-autocomplete-hint#readme",
"devDependencies": {
"@testing-library/dom": "^8.13.0",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^11.2.7",
"@testing-library/react-hooks": "^3.7.0",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^27.4.1",
"@types/react": "^16.9.51",
"@types/react-dom": "^16.9.8",
"css-loader": "^3.6.0",
"jest": "^27.5.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^17.0.1",
"sass": "^1.27.0",
"sass-loader": "^9.0.3",
"style-loader": "^1.3.0",
"ts-jest": "^27.1.4",
"ts-loader": "^9.2.8",
"typescript": "^3.9.7",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.8.1"
},
"peerDependencies": {
"react": ">=16.0.0"
},
"keywords": [
"autocomplete",
"typeahead",
"lookahead",
"auto complete",
"auto suggest",
"auto-complete",
"auto-suggest",
"autocomplete",
"autosuggest",
"react",
"react autocomplete",
"react autosuggest",
"react typeahead",
"react-typeahead",
"react-autocomplete",
"react-autosuggest",
"react hint",
"react-hint",
"input hint",
"react input hint",
"react-input-hint",
"react-input-typeahead",
"react-typeahead",
"react-lookahead"
]
}