package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "author": "Dominic Tarr <dominic.tarr@gmail.com> (dominictarr.com)",
  3. "name": "crypto-browserify",
  4. "description": "implementation of crypto for the browser",
  5. "version": "3.12.1",
  6. "homepage": "https://github.com/browserify/crypto-browserify",
  7. "sideEffects": false,
  8. "repository": {
  9. "type": "git",
  10. "url": "git://github.com/browserify/crypto-browserify.git"
  11. },
  12. "scripts": {
  13. "lint": "eslint --ext=js,mjs .",
  14. "pretest": "npm run lint",
  15. "tests-only": "nyc tape 'test/**/*.js'",
  16. "test": "npm run tests-only",
  17. "posttest": "npx npm@'>=10.2' audit --production"
  18. },
  19. "funding": {
  20. "url": "https://github.com/sponsors/ljharb"
  21. },
  22. "engines": {
  23. "node": ">= 0.10"
  24. },
  25. "dependencies": {
  26. "browserify-cipher": "^1.0.1",
  27. "browserify-sign": "^4.2.3",
  28. "create-ecdh": "^4.0.4",
  29. "create-hash": "^1.2.0",
  30. "create-hmac": "^1.1.7",
  31. "diffie-hellman": "^5.0.3",
  32. "hash-base": "~3.0.4",
  33. "inherits": "^2.0.4",
  34. "pbkdf2": "^3.1.2",
  35. "public-encrypt": "^4.0.3",
  36. "randombytes": "^2.1.0",
  37. "randomfill": "^1.0.4"
  38. },
  39. "devDependencies": {
  40. "@ljharb/eslint-config": "^21.1.1",
  41. "eslint": "=8.8.0",
  42. "hash-test-vectors": "^1.3.2",
  43. "nyc": "^10.3.2",
  44. "object.entries": "^1.1.8",
  45. "pseudorandombytes": "^2.0.0",
  46. "safe-buffer": "^5.2.1",
  47. "semver": "^6.3.1",
  48. "tape": "^5.9.0"
  49. },
  50. "browser": {
  51. "crypto": false
  52. },
  53. "license": "MIT"
  54. }