UNPKG

5.49 kBJSONView Raw
1{
2 "name": "react-bootstrap-typeahead",
3 "version": "6.0.0-rc.3",
4 "description": "React typeahead with Bootstrap styling",
5 "homepage": "http://ericgio.github.io/react-bootstrap-typeahead/",
6 "author": "ericgio",
7 "license": "MIT",
8 "files": [
9 "cjs/",
10 "css/",
11 "dist/",
12 "docs/",
13 "es/",
14 "types/",
15 "LICENSE.md"
16 ],
17 "main": "cjs/index.js",
18 "module": "es/index.js",
19 "types": "types/index.d.ts",
20 "repository": {
21 "type": "git",
22 "url": "https://github.com/ericgio/react-bootstrap-typeahead.git"
23 },
24 "bugs": "https://github.com/ericgio/react-bootstrap-typeahead/issues",
25 "scripts": {
26 "build": "yarn clean && yarn build:css && yarn build:modules && yarn build:dist && yarn build:types && yarn build:example",
27 "build:css": "node ./scripts/buildCSS.js",
28 "build:dist": "rollup -c",
29 "build:modules": "node ./scripts/buildModules.js",
30 "build:example": "yarn --cwd example/ run build",
31 "build:types": "tsc",
32 "check": "yarn lint && yarn typecheck && yarn prettier && yarn test",
33 "ci": "yarn lint && yarn typecheck && yarn prettier && yarn test:coverage",
34 "clean": "rimraf coverage && rimraf css && rimraf dist && rimraf cjs && rimraf es && rimraf types",
35 "deploy-example": "node ./scripts/deployExample.js",
36 "install:example": "yarn --cwd example/ install",
37 "lint": "eslint . --report-unused-disable-directives",
38 "lint:fix": "eslint . --fix",
39 "prettier": "prettier --check .",
40 "postpublish": "yarn deploy-example",
41 "prepublishOnly": "yarn run check && yarn build",
42 "start": "yarn --cwd example/ run start",
43 "test": "jest --silent",
44 "test:coverage": "jest --coverage",
45 "typecheck": "tsc --noEmit",
46 "storybook": "start-storybook -p 6006",
47 "build-storybook": "build-storybook"
48 },
49 "dependencies": {
50 "@babel/runtime": "^7.14.6",
51 "@popperjs/core": "^2.10.2",
52 "@restart/hooks": "^0.4.0",
53 "classnames": "^2.2.0",
54 "fast-deep-equal": "^3.1.1",
55 "invariant": "^2.2.1",
56 "lodash.debounce": "^4.0.8",
57 "prop-types": "^15.5.8",
58 "react-overlays": "^5.2.0",
59 "react-popper": "^2.2.5",
60 "scroll-into-view-if-needed": "^2.2.20",
61 "warning": "^4.0.1"
62 },
63 "peerDependencies": {
64 "react": ">=16.8.0",
65 "react-dom": ">=16.8.0"
66 },
67 "devDependencies": {
68 "@babel/cli": "^7.14.5",
69 "@babel/core": "^7.14.6",
70 "@babel/plugin-proposal-class-properties": "^7.14.5",
71 "@babel/plugin-proposal-export-default-from": "^7.14.5",
72 "@babel/plugin-transform-modules-commonjs": "^7.14.5",
73 "@babel/plugin-transform-runtime": "^7.14.5",
74 "@babel/preset-env": "^7.14.7",
75 "@babel/preset-react": "^7.14.5",
76 "@babel/preset-typescript": "^7.14.5",
77 "@ericgio/eslint-config-react": "^6.0.0",
78 "@rollup/plugin-babel": "^5.3.1",
79 "@rollup/plugin-commonjs": "^22.0.0",
80 "@rollup/plugin-node-resolve": "^13.3.0",
81 "@rollup/plugin-replace": "^4.0.0",
82 "@storybook/addon-a11y": "^6.5.6",
83 "@storybook/addon-actions": "^6.5.6",
84 "@storybook/addon-essentials": "^6.5.6",
85 "@storybook/addon-links": "^6.5.6",
86 "@storybook/builder-webpack5": "^6.5.6",
87 "@storybook/manager-webpack5": "^6.5.6",
88 "@storybook/preset-scss": "^1.0.3",
89 "@storybook/react": "^6.5.6",
90 "@storybook/testing-react": "^1.3.0",
91 "@testing-library/dom": "^8.1.0",
92 "@testing-library/jest-dom": "^5.14.1",
93 "@testing-library/react": "^12.0.0",
94 "@testing-library/user-event": "^14.2.0",
95 "@types/invariant": "^2.2.35",
96 "@types/jest": "^28.1.0",
97 "@types/jest-axe": "^3.5.3",
98 "@types/lodash.debounce": "^4.0.6",
99 "@types/react": "^17.0.14",
100 "@types/react-dom": "^17.0.9",
101 "@types/react-test-renderer": "^17.0.1",
102 "@typescript-eslint/eslint-plugin": "^4.28.2",
103 "@typescript-eslint/parser": "^4.28.2",
104 "babel-eslint": "^10.0.1",
105 "babel-loader": "^8.0.5",
106 "babel-plugin-dev-expression": "^0.2.1",
107 "babel-plugin-transform-imports": "^2.0.0",
108 "babel-plugin-transform-react-remove-prop-types": "^0.4.6",
109 "coveralls": "^3.1.1",
110 "css-loader": "^6.7.1",
111 "eslint": "^7.30.0",
112 "eslint-config-prettier": "^8.3.0",
113 "eslint-plugin-react-hooks": "^4.0.4",
114 "execa": "^5.1.1",
115 "gh-pages": "^4.0.0",
116 "husky": "^8.0.1",
117 "jest": "^28.1.0",
118 "jest-axe": "^6.0.0",
119 "jest-environment-jsdom": "^28.1.0",
120 "lint-staged": "^13.0.0",
121 "lodash": "^4.17.11",
122 "prettier": "^2.5.1",
123 "react": "^17.0.0",
124 "react-dom": "^17.0.0",
125 "react-test-renderer": "^17.0.2",
126 "rimraf": "^3.0.0",
127 "rollup": "^2.75.5",
128 "rollup-plugin-terser": "^7.0.0",
129 "sass": "^1.35.2",
130 "sass-loader": "^13.0.0",
131 "style-loader": "^3.3.1",
132 "typescript": "^4.3.5",
133 "webpack": "^5.44.0"
134 },
135 "lint-staged": {
136 "*.js": "eslint --report-unused-disable-directives",
137 "**/*": "prettier --write --ignore-unknown"
138 },
139 "keywords": [
140 "auto complete",
141 "auto suggest",
142 "auto-complete",
143 "auto-suggest",
144 "autocomplete",
145 "autosuggest",
146 "bootstrap",
147 "bootstrap tokenizer",
148 "bootstrap typeahead",
149 "bootstrap-tokenizer",
150 "bootstrap-typeahead",
151 "react",
152 "react autocomplete",
153 "react autosuggest",
154 "react tokenizer",
155 "react typeahead",
156 "react-autocomplete",
157 "react-autosuggest",
158 "react-bootstrap",
159 "react-bootstrap-tokenizer",
160 "react-bootstrap-typeahead",
161 "react-tokenizer",
162 "react-typeahead",
163 "tokenizer",
164 "typeahead"
165 ]
166}