package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "evp_bytestokey",
  3. "version": "1.0.3",
  4. "description": "The insecure key derivation algorithm from OpenSSL",
  5. "keywords": [
  6. "crypto",
  7. "openssl"
  8. ],
  9. "homepage": "https://github.com/crypto-browserify/EVP_BytesToKey",
  10. "bugs": {
  11. "url": "https://github.com/crypto-browserify/EVP_BytesToKey/issues"
  12. },
  13. "license": "MIT",
  14. "author": "Calvin Metcalf <calvin.metcalf@gmail.com>",
  15. "contributors": [
  16. "Kirill Fomichev <fanatid@ya.ru>"
  17. ],
  18. "files": [
  19. "index.js"
  20. ],
  21. "main": "index.js",
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/crypto-browserify/EVP_BytesToKey.git"
  25. },
  26. "scripts": {
  27. "coverage": "nyc tape test/*.js",
  28. "lint": "standard",
  29. "test": "npm run lint && npm run unit",
  30. "test:prepare": "node-gyp rebuild",
  31. "unit": "tape test/*.js"
  32. },
  33. "devDependencies": {
  34. "bindings": "^1.2.1",
  35. "nan": "^2.4.0",
  36. "nyc": "^8.1.0",
  37. "standard": "^8.0.0",
  38. "tape": "^4.6.0"
  39. },
  40. "gypfile": false,
  41. "dependencies": {
  42. "md5.js": "^1.3.4",
  43. "safe-buffer": "^5.1.1"
  44. }
  45. }