-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 992 Bytes
/
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
{
"name": "react-debounce-hook",
"version": "1.1.19",
"description": "A react hook for using a debouncing an input with state variables In react.",
"scripts": {
"build:prod": "yarn run webpack --env.mode production",
"build:dev": "yarn run webpack --env.mode development"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "[email protected]:logzio/use-debounce.git",
"author": "Amir Tugendhaft <[email protected]>",
"keywords": [
"react",
"hooks",
"hook",
"react-hook",
"react-hooks",
"debounce",
"useDebounce",
"debounce-hook",
"react-debounce"
],
"contributors": [
"Eden Turgeman <[email protected]>"
],
"license": "Apache-2.0",
"private": false,
"peerDependencies": {
"react": "^16.8.1"
},
"devDependencies": {
"@types/react": "^16.8.1",
"react": "^16.8.1",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
}
}