{
  "name": "limiter-es6-compat",
  "description": "A generic rate limiter for the web and node.js. Useful for API clients, web crawling, or other tasks that need to be throttled",
  "version": "2.1.2",
  "author": "John Hurliman <jhurliman@jhurliman.org>",
  "maintainers": [
    {
      "name": "Sudipto Sarkar",
      "email": "sudiptosarkar@visioplanet.org",
      "url": "https://github.com/sudiptosarkar"
    }
  ],
  "main": "./dist/cjs/index.js",
  "module": "./dist/esm/index.js",
  "browser": "./dist/esm/index.js",
  "exports": {
    "import": "./dist/esm/index.js",
    "require": "./dist/cjs/index.js"
  },
  "repository": "git://github.com/sudiptosarkar/node-rate-limiter",
  "bugs": {
    "url": "http://github.com/sudiptosarkar/node-rate-limiter/issues"
  },
  "license": "MIT",
  "files": [
    "dist",
    "src"
  ],
  "scripts": {
    "lint": "eslint --fix src",
    "prepack": "ttsc --build tsconfig.json && ttsc --build tsconfig.cjs.json && echo '{\n\t\"type\": \"module\"\n}' > dist/esm/package.json",
    "test": "jest src"
  },
  "dependencies": {
    "just-performance-es6-compat": "4.3.2"
  },
  "devDependencies": {
    "@babel/core": "^7.13.16",
    "@babel/preset-env": "^7.13.15",
    "@babel/preset-typescript": "^7.13.0",
    "@types/babel__generator": "^7.6.2",
    "@types/jest": "^26.0.23",
    "@typescript-eslint/eslint-plugin": "^4.22.0",
    "@typescript-eslint/parser": "^4.22.0",
    "@zoltu/typescript-transformer-append-js-extension": "^1.0.1",
    "babel-jest": "^26.6.3",
    "eslint": "^7.25.0",
    "eslint-plugin-prettier": "^3.4.0",
    "jest": "^26.6.3",
    "prettier": "^2.2.1",
    "typescript": "^4.2.4",
    "ttypescript": "1.5.15"
  },
  "keywords": [
    "rate",
    "limiting",
    "throttling"
  ]
}
