package.json 695 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "agent-base",
  3. "version": "2.1.1",
  4. "description": "Turn a function into an `http.Agent` instance",
  5. "main": "agent.js",
  6. "scripts": {
  7. "test": "mocha --reporter spec"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git://github.com/TooTallNate/node-agent-base.git"
  12. },
  13. "keywords": [
  14. "http",
  15. "agent",
  16. "base",
  17. "barebones",
  18. "https"
  19. ],
  20. "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
  21. "license": "MIT",
  22. "bugs": {
  23. "url": "https://github.com/TooTallNate/node-agent-base/issues"
  24. },
  25. "devDependencies": {
  26. "mocha": "2",
  27. "ws": "0.8.0"
  28. },
  29. "dependencies": {
  30. "extend": "~3.0.0",
  31. "semver": "~5.0.1"
  32. }
  33. }