UNPKG

814 BJSONView Raw
1{
2 "name": "debounce",
3 "version": "2.0.0",
4 "description": "Delay function calls until a set time elapses after the last invocation",
5 "license": "MIT",
6 "repository": "sindresorhus/debounce",
7 "funding": "https://github.com/sponsors/sindresorhus",
8 "exports": {
9 "types": "./index.d.ts",
10 "default": "./index.js"
11 },
12 "main": "./index.js",
13 "types": "./index.d.ts",
14 "sideEffects": false,
15 "engines": {
16 "node": ">=18"
17 },
18 "scripts": {
19 "test": "xo && node --test"
20 },
21 "files": [
22 "index.js",
23 "index.d.ts"
24 ],
25 "keywords": [
26 "debounce",
27 "debouncing",
28 "function",
29 "throttle",
30 "invoke",
31 "limit",
32 "limited",
33 "interval",
34 "rate",
35 "batch",
36 "ratelimit"
37 ],
38 "devDependencies": {
39 "sinon": "^17.0.1",
40 "xo": "^0.56.0"
41 },
42 "xo": {
43 "rules": {
44 "unicorn/prefer-module": "off"
45 }
46 }
47}