package.json 821 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "stream-throttle",
  3. "description": "A rate limiter for Node.js streams.",
  4. "version": "0.1.3",
  5. "author": "Tiago Quelhas <tiagoq@gmail.com>",
  6. "license": "BSD-3-Clause",
  7. "keywords": [
  8. "streams",
  9. "throttling",
  10. "ratelimit"
  11. ],
  12. "engines": {
  13. "node": ">= 0.10.0"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "http://github.com/tjgq/node-stream-throttle.git"
  18. },
  19. "main": "./index.js",
  20. "scripts": {
  21. "test": "nodeunit test"
  22. },
  23. "bin": {
  24. "throttleproxy": "./bin/throttleproxy.js"
  25. },
  26. "dependencies": {
  27. "commander": "^2.2.0",
  28. "limiter": "^1.0.5"
  29. },
  30. "devDependencies": {
  31. "async": "^0.6.2"
  32. },
  33. "__npminstall_done": true,
  34. "_from": "stream-throttle@0.1.3",
  35. "_resolved": "https://registry.npmmirror.com/stream-throttle/-/stream-throttle-0.1.3.tgz"
  36. }