downshift
Version:
A set of primitives to build simple, flexible, WAI-ARIA compliant React autocomplete components
90 lines • 2.59 kB
JSON
{
"name": "downshift",
"version": "1.5.0",
"description": "A set of primitives to build simple, flexible, WAI-ARIA compliant React autocomplete components",
"main": "dist/downshift.cjs.js",
"jsnext:main": "dist/downshift.es.js",
"module": "dist/downshift.es.js",
"typings": "typings/index.d.ts",
"scripts": {
"add-contributor": "kcd-scripts contributors add",
"doc": "doctoc README.md --maxlevel 2 --notitle",
"build": "kcd-scripts build --browser --p-react",
"lint": "kcd-scripts lint",
"test": "kcd-scripts test",
"test:cover": "kcd-scripts test --coverage",
"test:update": "npm run test:cover -s -- --updateSnapshot",
"test:ts": "tsc --noEmit -p ./tsconfig.json",
"test:build": "kcd-scripts test --config other/jest.config.js --no-watch",
"build-and-test": "npm run build -s && npm run test:build -s",
"storybook": "start-storybook -p 6006 -c stories",
"storybook:build": "cd stories && npm install && cd .. && build-storybook -c stories",
"validate": "kcd-scripts validate lint,build-and-test,test:cover,test:ts",
"precommit": "kcd-scripts precommit"
},
"files": [
"dist",
"typings"
],
"keywords": [
"enhanced input",
"react",
"autocomplete",
"autosuggest",
"typeahead",
"dropdown",
"select",
"combobox",
"omnibox",
"accessibility",
"WAI-ARIA",
"multiselect",
"multiple selection"
],
"author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
"license": "MIT",
"peerDependencies": {
"prop-types": ">=15",
"react": ">=15"
},
"devDependencies": {
"@storybook/react": "^3.2.3",
"doctoc": "^1.3.0",
"enzyme": "^2.9.1",
"enzyme-to-json": "^1.5.1",
"jest-serializer-html": "^4.0.0",
"kcd-scripts": "^0.6.1",
"preact": "^8.2.1",
"preact-render-to-string": "^3.6.3",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"typescript": "^2.4.2"
},
"eslintConfig": {
"extends": "./node_modules/kcd-scripts/eslint.js",
"rules": {
"max-lines": "off",
"no-eq-null": "off",
"eqeqeq": "off",
"react/jsx-indent": "off"
}
},
"eslintIgnore": [
"node_modules",
"coverage",
"dist",
"storybook-static",
"typings"
],
"repository": {
"type": "git",
"url": "https://github.com/paypal/downshift.git"
},
"bugs": {
"url": "https://github.com/paypal/downshift/issues"
},
"homepage": "https://github.com/paypal/downshift#readme",
"dependencies": {}
}