UNPKG

react-autosuggestions

Version:

An accessible React component to take the pain out of creating auto-suggestion components

59 lines (58 loc) 1.4 kB
{ "name": "react-autosuggestions", "version": "3.4.0", "keywords": [ "React", "auto-suggest", "accessible" ], "author": "Amy Shackles", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/AmyShackles/react-autosuggestions.git" }, "main": "dist/AutoSuggest.js", "peerDependencies": { "react": "^17.0.1", "react-dom": "^17.0.1" }, "scripts": { "test": "jest tests --verbose", "test:coverage": "jest tests --coverage", "test:watch": "npm run test --watch" }, "devDependencies": { "@babel/core": "^7.12.10", "@babel/plugin-transform-runtime": "^7.12.10", "@babel/preset-env": "^7.12.11", "@babel/preset-react": "^7.12.10", "@testing-library/jest-dom": "^5.11.8", "@testing-library/react": "^11.2.2", "@testing-library/user-event": "^12.6.0", "babel-jest": "^26.6.3", "babel-loader": "^8.2.2", "jest": "^26.6.3", "msw": "^0.25.0", "node-fetch": "^2.6.1", "react": "^17.0.1", "react-dom": "^17.0.1", "style-loader": "^2.0.0", "webpack": "^5.11.1", "webpack-cli": "^4.3.1" }, "jest": { "collectCoverageFrom": [ "src/components/**/*.js", "src/utils/**/*.js" ], "coverageThreshold": { "global": { "branches": 90, "functions": 90, "lines": 90, "statements": 90 } } } }