forked from goodtimeaj/debounce-event
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbower.json
30 lines (30 loc) · 768 Bytes
/
bower.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
{
"name": "debounce-event",
"description": "Debounces batched browser event callback execution until the last event within a given time period. The utility provides support for attaching multiple callbacks to the same debounced event batch, manual detaching of batches, and the option to execute callbacks only once.",
"main": [
"dist/debounce-event.min.js"
],
"devDependencies": {
"jquery": "2.1.4",
"requirejs": "2.1.22",
"mocha": "2.3.4",
"chai": "3.4.2"
},
"moduleType": [
"amd",
"globals",
"node"
],
"keywords": [
"debounce",
"throttle",
"event"
],
"author": "Greg Stallings <gregstallings@gmail.com>",
"license": "MIT",
"ignore": [
"/node_modules",
"/test",
"/Gruntfile.js"
]
}