debounce-async
Version:
A debounced function that delays invoking asynchronous functions.
42 lines (41 loc) • 1.21 kB
JSON
{
"name": "debounce-async",
"version": "0.0.2",
"description": "A debounced function that delays invoking asynchronous functions.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha --compilers js:babel-core/register",
"build": "./node_modules/.bin/babel ./src --out-dir ./dist --presets es2015 --plugins syntax-async-functions,transform-regenerator"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/szchenghuang/debounce-async.git"
},
"keywords": [
"debounce",
"throttle",
"promise",
"asynchronous",
"timeout",
"ratelimit"
],
"author": "szchenghuang",
"license": "MIT",
"bugs": {
"url": "https://github.com/szchenghuang/debounce-async/issues"
},
"homepage": "https://github.com/szchenghuang/debounce-async#readme",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-regenerator": "^6.14.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"mocha": "^3.0.1",
"promise-results": "^0.6.2"
}
}