-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathpackage.json
102 lines (102 loc) · 3.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"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 [email protected]:nkbt/react-debounce-input.git --user [email protected] --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 <[email protected]> (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": "[email protected]"
}