package.json 782 B

12345678910111213141516171819202122232425
  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. },
  11. "devDependencies": {
  12. "assert": "1.3.0",
  13. "vows": "0.8.1"
  14. },
  15. "keywords": ["rate", "limiting", "throttling"],
  16. "repository": "git://github.com/jhurliman/node-rate-limiter",
  17. "bugs": { "url": "http://github.com/jhurliman/node-rate-limiter/issues" },
  18. "directories": { "lib": "./lib/" },
  19. "main": "./index.js",
  20. "types": "./index.d.ts",
  21. "licenses": [{
  22. "type": "MIT",
  23. "url": "http://github.com/jhurliman/node-rate-limiter/raw/master/LICENSE.txt"
  24. }]
  25. }