package.json 1.2 KB

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