{
  "name": "@forivall/wyt",
  "version": "2.0.4",
  "description": "A time-based rate limiter using promises",
  "keywords": [
    "throttle",
    "throttling",
    "time",
    "interval",
    "rate limit",
    "rate-limit",
    "ratelimit",
    "rate",
    "limit",
    "limiter",
    "promise",
    "concurrency",
    "async",
    "await",
    "bottleneck",
    "typescript"
  ],
  "author": "Max Kueng (https://maxkueng.com/contact)",
  "contributors": [
    "Emily Klassen (forivall@users.noreply.github.com)"
  ],
  "license": "MIT",
  "homepage": "https://github.com/forivall/wyt",
  "repository": {
    "type": "git",
    "url": "git://github.com/forivall/wyt.git"
  },
  "bugs": {
    "url": "https://github.com/forivall/wyt/issues"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "src"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "clean": "rimraf dist",
    "build": "tsc",
    "lint": "eslint src/*.ts",
    "lint:fix": "eslint --fix src/*.ts",
    "test": "npm-run-all -s lint clean build test:js",
    "test:js": "nyc ava",
    "prepare": "npm-run-all -s build",
    "publish-coverage": "nyc report --reporter=text-lcov | coveralls",
    "prepublish": "npm-run-all -s test"
  },
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^2.27.0",
    "@typescript-eslint/parser": "^2.27.0",
    "ava": "^3.6.0",
    "coveralls": "^3.0.11",
    "eslint": "^6.8.0",
    "eslint-config-airbnb-base": "^14.1.0",
    "eslint-plugin-import": "^2.20.2",
    "npm-run-all": "^4.1.5",
    "nyc": "^15.0.1",
    "rimraf": "^3.0.2",
    "typescript": "^3.8.3"
  },
  "engines": {
    "node": ">=12.18.3"
  }
}
