package.json 961 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "wekan-request",
  3. "description": "Simplified HTTP request client.",
  4. "tags": [
  5. "http",
  6. "simple",
  7. "util",
  8. "utility"
  9. ],
  10. "version": "2.39.1",
  11. "author": "Mikeal Rogers <mikeal.rogers@gmail.com>",
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/mikeal/request.git"
  15. },
  16. "bugs": {
  17. "url": "http://github.com/mikeal/request/issues"
  18. },
  19. "license": "Apache-2.0",
  20. "engines": [
  21. "node >= 0.8.0"
  22. ],
  23. "main": "index.js",
  24. "dependencies": {
  25. "qs": ">=0.6.4",
  26. "json-stringify-safe": "~5.0.0",
  27. "mime-types": "~1.0.1",
  28. "forever-agent": "~0.5.0",
  29. "node-uuid": "~1.4.0"
  30. },
  31. "optionalDependencies": {
  32. "tough-cookie": ">=0.12.0",
  33. "form-data": "~0.1.0",
  34. "tunnel-agent": "~0.4.0",
  35. "http-signature": "~0.10.0",
  36. "oauth-sign": "~0.3.0",
  37. "hawk": "1.1.1",
  38. "aws-sign2": "~0.5.0",
  39. "stringstream": "~0.0.4"
  40. },
  41. "scripts": {
  42. "test": "node tests/run.js"
  43. }
  44. }