package.json 954 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "limiter",
  3. "description": "A generic rate limiter for node.js. Useful for API clients, web crawling, or other tasks that need to be throttled",
  4. "version": "1.1.5",
  5. "author": "John Hurliman <jhurliman@jhurliman.org>",
  6. "scripts": {
  7. "test": "vows --spec"
  8. },
  9. "dependencies": {},
  10. "devDependencies": {
  11. "assert": "1.3.0",
  12. "vows": "0.8.1"
  13. },
  14. "keywords": [
  15. "rate",
  16. "limiting",
  17. "throttling"
  18. ],
  19. "repository": "git://github.com/jhurliman/node-rate-limiter",
  20. "bugs": {
  21. "url": "http://github.com/jhurliman/node-rate-limiter/issues"
  22. },
  23. "directories": {
  24. "lib": "./lib/"
  25. },
  26. "main": "./index.js",
  27. "types": "./index.d.ts",
  28. "licenses": [
  29. {
  30. "type": "MIT",
  31. "url": "http://github.com/jhurliman/node-rate-limiter/raw/master/LICENSE.txt"
  32. }
  33. ],
  34. "__npminstall_done": true,
  35. "_from": "limiter@1.1.5",
  36. "_resolved": "https://registry.npmmirror.com/limiter/-/limiter-1.1.5.tgz"
  37. }