UNPKG

async-ratelimiter

Version:
135 lines (134 loc) 3.12 kB
{ "name": "async-ratelimiter", "description": "Rate limit made simple, easy, async.", "homepage": "https://github.com/microlinkhq/async-ratelimiter", "version": "1.6.4", "main": "src/index.js", "author": { "email": "hello@microlink.io", "name": "microlink.io", "url": "https://microlink.io" }, "contributors": [ { "name": "Kiko Beats", "email": "josefrancisco.verdu@gmail.com" }, { "name": "3imed-jaberi", "email": "imed_jebari@hotmail.fr" }, { "name": "Marcus Poehls", "email": "marcus.poehls@gmail.com" }, { "name": "Ayan Yenbekbay", "email": "ayan.yenb@gmail.com" }, { "name": "Andrew", "email": "5755685+arnidan@users.noreply.github.com" }, { "name": "amanda", "email": "amandalucis@gmail.com" }, { "name": "Loren", "email": "loren138@users.noreply.github.com" }, { "name": "Nico Kaiser", "email": "nico@kaiser.me" }, { "name": "offirmo", "email": "offirmo.net@gmail.com" }, { "name": "kornel-kedzierski", "email": "pl.kornel@gmail.com" } ], "repository": { "type": "git", "url": "git+https://github.com/microlinkhq/async-ratelimiter.git" }, "bugs": { "url": "https://github.com/microlinkhq/async-ratelimiter/issues" }, "keywords": [ "async", "limit", "limiter", "promise", "rate", "ratelimit" ], "devDependencies": { "@commitlint/cli": "latest", "@commitlint/config-conventional": "latest", "@ksmithut/prettier-standard": "latest", "c8": "latest", "ci-publish": "latest", "finepack": "latest", "git-authors-cli": "latest", "github-generate-release": "latest", "ioredis": "latest", "mocha": "latest", "nano-staged": "latest", "should": "latest", "simple-git-hooks": "latest", "standard": "latest", "standard-version": "latest" }, "engines": { "node": ">= 8" }, "files": [ "index.d.ts", "src" ], "scripts": { "clean": "rm -rf node_modules", "contributors": "(npx git-authors-cli && npx finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true", "lint": "standard", "postrelease": "npm run release:tags && npm run release:github && (ci-publish || npm publish --access=public)", "pretest": "npm run lint", "release": "standard-version -a", "release:github": "github-generate-release", "release:tags": "git push --follow-tags origin HEAD:master", "test": "c8 mocha --exit" }, "license": "MIT", "commitlint": { "extends": [ "@commitlint/config-conventional" ], "rules": { "body-max-line-length": [ 0 ] } }, "nano-staged": { "*.js": [ "prettier-standard", "standard --fix" ], "package.json": [ "finepack" ] }, "simple-git-hooks": { "commit-msg": "npx commitlint --edit", "pre-commit": "npx nano-staged" }, "standard": { "env": [ "mocha" ] }, "typings": "./index.d.ts" }