websocket快速操作工具
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
1.2 KiB

  1. {
  2. "name": "http-auth",
  3. "description": "Node.js package for HTTP basic and digest access authentication.",
  4. "version": "3.1.3",
  5. "author": "Gevorg Harutyunyan (http://github.com/gevorg)",
  6. "maintainers": [
  7. {
  8. "name": "gevorg",
  9. "email": "gevorg.ha@gmail.com"
  10. }
  11. ],
  12. "homepage": "http://http-auth.info",
  13. "repository": {
  14. "type": "git",
  15. "url": "http://github.com/http-auth/http-auth.git"
  16. },
  17. "main": "./src/http-auth.js",
  18. "licenses": [
  19. {
  20. "type": "MIT",
  21. "url": "http://github.com/http-auth/http-auth/blob/master/LICENSE"
  22. }
  23. ],
  24. "license": "MIT",
  25. "bugs": {
  26. "url": "http://github.com/http-auth/http-auth/issues"
  27. },
  28. "dependencies": {
  29. "apache-crypt": "^1.1.2",
  30. "apache-md5": "^1.0.6",
  31. "bcryptjs": "^2.3.0",
  32. "uuid": "^3.0.0"
  33. },
  34. "devDependencies": {
  35. "chai": "^3.5.0",
  36. "express": "^4.13.4",
  37. "http-proxy": "^1.13.3",
  38. "koa": "^1.2.0",
  39. "hapi": "^15.0.3",
  40. "mocha": "^3.1.2",
  41. "passport": "^0.3.2",
  42. "request": "^2.72.0"
  43. },
  44. "engines": {
  45. "node": ">=4.6.1"
  46. },
  47. "scripts": {
  48. "test": "mocha"
  49. },
  50. "keywords": [
  51. "http",
  52. "basic",
  53. "digest",
  54. "access",
  55. "authentication"
  56. ]
  57. }