forked from goodtimeaj/debounce-event
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.11 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
{
"name": "debounce-event",
"version": "0.0.1",
"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.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm install && grunt install && grunt build",
"test": "grunt build && grunt test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gregstallings/debounce-event.git"
},
"keywords": [
"debounce",
"throttle",
"event"
],
"author": "Greg Stallings <gregstallings@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gregstallings/debounce-event/issues"
},
"homepage": "https://github.com/gregstallings/debounce-event#readme",
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-copy": "^0.8.2",
"grunt-contrib-uglify": "^0.11.0",
"grunt-shell": "^1.1.2",
"mocha-phantomjs": "^4.0.2"
}
}