package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "http-auth",
  3. "description": "Node.js package for HTTP basic and digest access authentication.",
  4. "version": "4.1.9",
  5. "author": "Gevorg Harutyunyan (http://github.com/gevorg)",
  6. "maintainers": [
  7. {
  8. "name": "gevorg",
  9. "email": "gevorg.ha@gmail.com"
  10. }
  11. ],
  12. "homepage": "https://github.com/gevorg/http-auth",
  13. "repository": {
  14. "type": "git",
  15. "url": "http://github.com/gevorg/http-auth.git"
  16. },
  17. "main": "./src/http-auth.js",
  18. "licenses": [
  19. {
  20. "type": "MIT",
  21. "url": "http://github.com/gevorg/http-auth/blob/master/LICENSE"
  22. }
  23. ],
  24. "license": "MIT",
  25. "bugs": {
  26. "url": "http://github.com/gevorg/http-auth/issues"
  27. },
  28. "dependencies": {
  29. "apache-crypt": "^1.1.2",
  30. "apache-md5": "^1.0.6",
  31. "bcryptjs": "^2.4.3",
  32. "uuid": "^8.3.2"
  33. },
  34. "devDependencies": {
  35. "chai": "^4.2.0",
  36. "eslint": "^6.8.0",
  37. "eslint-config-prettier": "^6.10.0",
  38. "eslint-plugin-node": "^11.0.0",
  39. "eslint-plugin-prettier": "^3.1.2",
  40. "http-proxy": "^1.18.0",
  41. "mocha": "^7.0.1",
  42. "prettier": "^1.19.1",
  43. "request": "^2.88.0"
  44. },
  45. "engines": {
  46. "node": ">=8"
  47. },
  48. "scripts": {
  49. "test": "mocha",
  50. "pretest": "eslint --ignore-path .gitignore ."
  51. },
  52. "keywords": [
  53. "http",
  54. "basic",
  55. "digest",
  56. "access",
  57. "authentication"
  58. ]
  59. }