forked from nkbt/react-debounce-input
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.06 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.06 KB
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
{
"name": "react-debounce-input",
"version": "2.4.0",
"description": "React component that renders Input with debounced onChange",
"main": "lib/index.js",
"config": {
"component": "DebounceInput"
},
"scripts": {
"start": "react-component-template",
"test": "npm start test",
"precommit": "npm start precommit",
"prepush": "npm start prepush",
"postversion": "npm start postversion",
"prepublish": "npm start prepublish"
},
"repository": {
"type": "git",
"url": "https://github.com/nkbt/react-debounce-input.git"
},
"keywords": [
"component",
"react-component",
"react",
"input",
"debounce",
"throttle"
],
"author": "Nik Butenko <nik@butenko.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nkbt/react-debounce-input/issues"
},
"homepage": "https://github.com/nkbt/react-debounce-input",
"peerDependencies": {
"react": "^0.14 || ^15"
},
"dependencies": {
"lodash.debounce": "^3 || ^4"
},
"devDependencies": {
"react-component-template": "0.1.5"
}
}