-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.44 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
{
"name": "tiny-use-debounce",
"version": "1.0.4",
"description": "React hooks for debouncing and throttling.",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"license": "MIT",
"author": "Ayub Begimkulov",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint",
"build": "rollup -c"
},
"dependencies": {},
"devDependencies": {
"@testing-library/react-hooks": "^5.1.0",
"@types/jest": "^26.0.20",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"jest": "^26.6.3",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"rollup": "^2.39.0",
"rollup-plugin-size-snapshot": "^0.12.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.5.3",
"typescript": "^4.1.5"
},
"peerDependencies": {
"react": ">=16.8.0 || 17.x",
"react-dom": ">=16.8.0 || 17.x"
},
"keywords": [
"use-debounce",
"use-throttle",
"tiny-use-debounce",
"debounce",
"throttle",
"react-hooks",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/Ayub-Begimkulov/tiny-use-debounce"
},
"bugs": {
"url": "https://github.com/Ayub-Begimkulov/tiny-use-debounce/issues"
},
"homepage": "https://github.com/Ayub-Begimkulov/tiny-use-debounce#readme",
"files": [
"dist"
]
}