package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "apache-md5",
  3. "description": "Node.js module for Apache style password encryption using md5.",
  4. "version": "1.1.8",
  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://github.com/gevorg/apache-md5",
  13. "repository": {
  14. "type": "git",
  15. "url": "http://github.com/gevorg/apache-md5.git"
  16. },
  17. "main": "./src/index.js",
  18. "typings": "./src/apache-md5.d.ts",
  19. "licenses": [
  20. {
  21. "type": "MIT",
  22. "url": "http://github.com/gevorg/apache-md5/blob/master/LICENSE"
  23. }
  24. ],
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "http://github.com/gevorg/apache-md5/issues"
  28. },
  29. "devDependencies": {
  30. "chai": "^4.2.0",
  31. "eslint": "^6.8.0",
  32. "eslint-config-prettier": "^6.10.0",
  33. "eslint-plugin-node": "^11.0.0",
  34. "eslint-plugin-prettier": "^3.1.2",
  35. "mocha": "^7.0.1",
  36. "prettier": "^1.19.1"
  37. },
  38. "engines": {
  39. "node": ">=8"
  40. },
  41. "scripts": {
  42. "test": "mocha",
  43. "pretest": "eslint --ignore-path .gitignore ."
  44. },
  45. "keywords": [
  46. "apache",
  47. "md5",
  48. "password",
  49. "htpasswd"
  50. ]
  51. }