{ "name": "react-debounce-input", "version": "3.3.0", "description": "React component that renders Input with debounced onChange", "main": "lib/index.js", "types": "src/index.d.ts", "config": { "component": "DebounceInput", "externals": { "react": "React", "react-dom": "ReactDOM" }, "include": [ "https://unpkg.com/react/umd/react.production.min.js", "https://unpkg.com/react-dom/umd/react-dom.production.min.js" ] }, "scripts": { "build": "yarn lib && yarn dist", "start": "NODE_ENV=development webpack-cli serve --config ./webpack/dev.config.js", "predist": "rm -rf ./build", "dist": "NODE_ENV=production webpack-cli --config ./webpack/dist.config.js && NODE_ENV=production webpack-cli --config ./webpack/min.config.js", "preghPages": "yarn pub", "ghPages": "gh-pages --dist ./pub --repo git@github.com:nkbt/react-debounce-input.git --user nik@butenko.me --branch gh-pages --message 'Publish examples' ", "prelib": "rm -rf ./lib", "lib": "NODE_ENV=production babel src --out-dir lib", "lint": "eslint .", "prepub": "rm -rf ./pub", "pub": "NODE_ENV=production webpack-cli --config ./webpack/pub.config.js", "test": "node test/Component-test.js", "prepublishOnly": "yarn build", "postversion": "git push --follow-tags", "deps": "depcheck", "check:deps": "[ ! $(depcheck | grep --invert-match 'No depcheck issue') ]" }, "repository": { "type": "git", "url": "https://github.com/nkbt/react-debounce-input.git" }, "keywords": [ "component", "react-component", "react", "input", "debounce", "throttle" ], "author": "Nik Butenko (https://butenko.me)", "license": "MIT", "bugs": { "url": "https://github.com/nkbt/react-debounce-input/issues" }, "homepage": "https://github.com/nkbt/react-debounce-input", "peerDependencies": { "react": "^15.3.0 || 16 || 17 || 18" }, "dependencies": { "lodash.debounce": "^4", "prop-types": "^15.8.1" }, "devDependencies": { "@babel/cli": "^7.17.6", "@babel/core": "^7.17.9", "@babel/eslint-parser": "^7.17.0", "@babel/plugin-proposal-class-properties": "^7.16.7", "@babel/plugin-proposal-object-rest-spread": "^7.17.3", "@babel/preset-env": "^7.16.11", "@babel/preset-react": "^7.16.7", "@babel/register": "^7.17.7", "@types/react": "^18.0.5", "babel-loader": "^8.2.5", "babel-plugin-transform-react-remove-prop-types": "^0.4.24", "css-loader": "^6.7.1", "depcheck": "^1.4.3", "eslint": "^8.13.0", "eslint-config-airbnb": "^19.0.4", "eslint-plugin-import": "^2.26.0", "eslint-plugin-jsx-a11y": "^6.5.1", "eslint-plugin-react": "^7.29.4", "eslint-plugin-react-hooks": "^4.4.0", "gh-pages": "^3.2.3", "html-webpack-plugin": "^5.5.0", "html-webpack-tags-plugin": "^3.0.2", "mini-css-extract-plugin": "^2.6.0", "react": "^18.0.0", "react-dom": "^18.0.0", "style-loader": "^3.3.1", "tape": "^5.5.3", "webpack": "^5.72.0", "webpack-cli": "^4.9.2", "webpack-dev-server": "^4.8.1" }, "files": [ "build", "lib", "src", "LICENSE", "package.json", "README.md" ], "packageManager": "yarn@3.2.0" }