UNPKG

debounce-promise

Version:

Create a debounced version of a promise returning function

48 lines (47 loc) 1.4 kB
{ "name": "debounce-promise", "version": "3.1.2", "description": "Create a debounced version of a promise returning function", "main": "dist/index", "runkitExampleFilename": "./example.js", "scripts": { "test": "tap --node-arg -r --node-arg babel-register --node-arg -r --node-arg babel-polyfill test && npm run lint", "lint": "standard | snazzy", "compile": "babel index.js --source-maps --out-dir dist", "clean": "rimraf dist", "prepare": "in-publish && npm run compile || not-in-publish", "postpublish": "in-publish && npm run clean || not-in-publish" }, "repository": { "type": "git", "url": "git+https://github.com/bjoerge/debounce-promise.git" }, "keywords": [ "promise", "batch", "accumulate", "debounce", "throttle", "ratelimit" ], "author": "Bjørge Næss", "license": "MIT", "bugs": { "url": "https://github.com/bjoerge/debounce-promise/issues" }, "homepage": "https://github.com/bjoerge/debounce-promise", "devDependencies": { "babel-cli": "^6.5.2", "babel-plugin-transform-async-to-generator": "^6.16.0", "babel-polyfill": "^6.16.0", "babel-preset-es2015": "^6.16.0", "babel-register": "^6.16.3", "eslint": "^3.8.0", "in-publish": "^2.0.0", "rimraf": "^2.5.4", "snazzy": "^5.0.0", "standard": "^8.4.0", "tap": "^7.1.2" }, "dependencies": {} }