UNPKG

4.77 kBJSONView Raw
1{
2 "name": "react-bootstrap-typeahead",
3 "version": "5.1.1",
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 "css/",
10 "dist/",
11 "docs/",
12 "es/",
13 "lib",
14 "LICENSE.md"
15 ],
16 "main": "lib/index.js",
17 "module": "es/index.js",
18 "repository": {
19 "type": "git",
20 "url": "https://github.com/ericgio/react-bootstrap-typeahead.git"
21 },
22 "bugs": "https://github.com/ericgio/react-bootstrap-typeahead/issues",
23 "scripts": {
24 "build": "npm run clean && npm run build:css && npm run build:cjs && npm run build:es && npm run build:dist && npm run build:example",
25 "build:css": "node ./scripts/buildCSS.js",
26 "build:dist": "rollup -c",
27 "build:cjs": "BABEL_ENV=cjs babel src --out-dir lib",
28 "build:es": "BABEL_ENV=es babel src --out-dir es",
29 "build:example": "webpack --mode production --config example/webpack.config.js",
30 "check": "npm run lint && npm run flow && npm test",
31 "clean": "rimraf coverage && rimraf css && rimraf dist && rimraf lib && rimraf es",
32 "deploy-example": "node ./scripts/deployExample.js",
33 "flow": "flow",
34 "lint": "eslint . --report-unused-disable-directives",
35 "lint:fix": "eslint . --fix",
36 "postpublish": "npm run deploy-example",
37 "prepublishOnly": "npm run check && npm run build",
38 "start": "webpack --mode development -w --progress --config example/webpack.config.js",
39 "test": "jest --silent",
40 "test:coverage": "jest --coverage"
41 },
42 "dependencies": {
43 "@babel/runtime": "^7.3.4",
44 "@restart/hooks": "^0.3.22",
45 "classnames": "^2.2.0",
46 "fast-deep-equal": "^3.1.1",
47 "invariant": "^2.2.1",
48 "lodash.debounce": "^4.0.8",
49 "prop-types": "^15.5.8",
50 "react-overlays": "^2.0.0",
51 "react-popper": "^1.0.0",
52 "scroll-into-view-if-needed": "^2.2.20",
53 "warning": "^4.0.1"
54 },
55 "peerDependencies": {
56 "react": ">=16.8.0",
57 "react-dom": ">=16.8.0"
58 },
59 "devDependencies": {
60 "@babel/cli": "^7.2.3",
61 "@babel/core": "^7.2.2",
62 "@babel/plugin-proposal-class-properties": "^7.2.3",
63 "@babel/plugin-proposal-export-default-from": "^7.2.0",
64 "@babel/plugin-transform-modules-commonjs": "^7.2.0",
65 "@babel/plugin-transform-runtime": "^7.3.4",
66 "@babel/preset-env": "^7.2.3",
67 "@babel/preset-flow": "^7.0.0",
68 "@babel/preset-react": "^7.0.0",
69 "@ericgio/eslint-config-react": "^6.0.0",
70 "@rollup/plugin-babel": "^5.0.2",
71 "@rollup/plugin-commonjs": "^14.0.0",
72 "@rollup/plugin-node-resolve": "^8.0.0",
73 "@rollup/plugin-replace": "^2.3.1",
74 "babel-eslint": "^10.0.1",
75 "babel-loader": "^8.0.5",
76 "babel-plugin-dev-expression": "^0.2.1",
77 "babel-plugin-transform-imports": "^2.0.0",
78 "babel-plugin-transform-react-remove-prop-types": "^0.4.6",
79 "circular-dependency-plugin": "^5.0.2",
80 "coveralls": "^3.0.3",
81 "css-loader": "^4.2.1",
82 "enzyme": "^3.3.0",
83 "enzyme-adapter-react-16": "^1.5.0",
84 "es6-promise": "^4.0.5",
85 "eslint": "^7.6.0",
86 "eslint-plugin-flowtype": "^5.2.0",
87 "eslint-plugin-react-hooks": "^4.0.4",
88 "flow-bin": "^0.131.0",
89 "gh-pages": "^3.1.0",
90 "husky": "^4.2.3",
91 "isomorphic-fetch": "^2.2.1",
92 "jest": "^24.0.0",
93 "json-loader": "^0.5.4",
94 "lint-staged": "^10.0.8",
95 "lodash": "^4.17.11",
96 "marked": "^1.1.0",
97 "node-sass": "^4.5.3",
98 "raw-loader": "^4.0.0",
99 "react": "^16.8.0",
100 "react-axe": "^3.4.1",
101 "react-bootstrap": "^1.0.0-beta.17",
102 "react-dom": "^16.8.0",
103 "react-prism": "^4.3.2",
104 "react-test-renderer": "^16.5.0",
105 "react-waypoint": "^9.0.0",
106 "rimraf": "^3.0.0",
107 "rollup": "^2.0.5",
108 "rollup-plugin-size-snapshot": "^0.12.0",
109 "rollup-plugin-terser": "^7.0.0",
110 "sass-loader": "^9.0.3",
111 "style-loader": "^1.0.0",
112 "terser-webpack-plugin": "^4.0.0",
113 "webpack": "^4.6.0",
114 "webpack-cli": "^3.1.0"
115 },
116 "husky": {
117 "hooks": {
118 "pre-commit": "lint-staged && flow",
119 "pre-push": "npm run check"
120 }
121 },
122 "lint-staged": {
123 "*.js": "eslint --report-unused-disable-directives"
124 },
125 "keywords": [
126 "auto complete",
127 "auto suggest",
128 "auto-complete",
129 "auto-suggest",
130 "autocomplete",
131 "autosuggest",
132 "bootstrap",
133 "bootstrap tokenizer",
134 "bootstrap typeahead",
135 "bootstrap-tokenizer",
136 "bootstrap-typeahead",
137 "react",
138 "react autocomplete",
139 "react autosuggest",
140 "react tokenizer",
141 "react typeahead",
142 "react-autocomplete",
143 "react-autosuggest",
144 "react-bootstrap",
145 "react-bootstrap-tokenizer",
146 "react-bootstrap-typeahead",
147 "react-tokenizer",
148 "react-typeahead",
149 "tokenizer",
150 "typeahead"
151 ]
152}