source: node_modules/react-debounce-input/package.json

main
Last change on this file was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 3.2 KB
RevLine 
[d24f17c]1{
2 "name": "react-debounce-input",
3 "version": "3.3.0",
4 "description": "React component that renders Input with debounced onChange",
5 "main": "lib/index.js",
6 "types": "src/index.d.ts",
7 "config": {
8 "component": "DebounceInput",
9 "externals": {
10 "react": "React",
11 "react-dom": "ReactDOM"
12 },
13 "include": [
14 "https://unpkg.com/react/umd/react.production.min.js",
15 "https://unpkg.com/react-dom/umd/react-dom.production.min.js"
16 ]
17 },
18 "scripts": {
19 "build": "yarn lib && yarn dist",
20 "start": "NODE_ENV=development webpack-cli serve --config ./webpack/dev.config.js",
21 "predist": "rm -rf ./build",
22 "dist": "NODE_ENV=production webpack-cli --config ./webpack/dist.config.js && NODE_ENV=production webpack-cli --config ./webpack/min.config.js",
23 "preghPages": "yarn pub",
24 "ghPages": "gh-pages --dist ./pub --repo git@github.com:nkbt/react-debounce-input.git --user nik@butenko.me --branch gh-pages --message 'Publish examples' ",
25 "prelib": "rm -rf ./lib",
26 "lib": "NODE_ENV=production babel src --out-dir lib",
27 "lint": "eslint .",
28 "prepub": "rm -rf ./pub",
29 "pub": "NODE_ENV=production webpack-cli --config ./webpack/pub.config.js",
30 "test": "node test/Component-test.js",
31 "prepublishOnly": "yarn build",
32 "postversion": "git push --follow-tags",
33 "deps": "depcheck",
34 "check:deps": "[ ! $(depcheck | grep --invert-match 'No depcheck issue') ]"
35 },
36 "repository": {
37 "type": "git",
38 "url": "https://github.com/nkbt/react-debounce-input.git"
39 },
40 "keywords": [
41 "component",
42 "react-component",
43 "react",
44 "input",
45 "debounce",
46 "throttle"
47 ],
48 "author": "Nik Butenko <nik@butenko.me> (https://butenko.me)",
49 "license": "MIT",
50 "bugs": {
51 "url": "https://github.com/nkbt/react-debounce-input/issues"
52 },
53 "homepage": "https://github.com/nkbt/react-debounce-input",
54 "peerDependencies": {
55 "react": "^15.3.0 || 16 || 17 || 18"
56 },
57 "dependencies": {
58 "lodash.debounce": "^4",
59 "prop-types": "^15.8.1"
60 },
61 "devDependencies": {
62 "@babel/cli": "^7.17.6",
63 "@babel/core": "^7.17.9",
64 "@babel/eslint-parser": "^7.17.0",
65 "@babel/plugin-proposal-class-properties": "^7.16.7",
66 "@babel/plugin-proposal-object-rest-spread": "^7.17.3",
67 "@babel/preset-env": "^7.16.11",
68 "@babel/preset-react": "^7.16.7",
69 "@babel/register": "^7.17.7",
70 "@types/react": "^18.0.5",
71 "babel-loader": "^8.2.5",
72 "babel-plugin-transform-react-remove-prop-types": "^0.4.24",
73 "css-loader": "^6.7.1",
74 "depcheck": "^1.4.3",
75 "eslint": "^8.13.0",
76 "eslint-config-airbnb": "^19.0.4",
77 "eslint-plugin-import": "^2.26.0",
78 "eslint-plugin-jsx-a11y": "^6.5.1",
79 "eslint-plugin-react": "^7.29.4",
80 "eslint-plugin-react-hooks": "^4.4.0",
81 "gh-pages": "^3.2.3",
82 "html-webpack-plugin": "^5.5.0",
83 "html-webpack-tags-plugin": "^3.0.2",
84 "mini-css-extract-plugin": "^2.6.0",
85 "react": "^18.0.0",
86 "react-dom": "^18.0.0",
87 "style-loader": "^3.3.1",
88 "tape": "^5.5.3",
89 "webpack": "^5.72.0",
90 "webpack-cli": "^4.9.2",
91 "webpack-dev-server": "^4.8.1"
92 },
93 "files": [
94 "build",
95 "lib",
96 "src",
97 "LICENSE",
98 "package.json",
99 "README.md"
100 ],
101 "packageManager": "yarn@3.2.0"
102}
Note: See TracBrowser for help on using the repository browser.