7d85e5fdf46e317a4a61ef1c33f8608a23f5e9daf949eb0e653a99a757dec93093e349fa9acef9a924e51ef5280f05ee7ae7a9cc7221b0c3863b9a378f7d0d 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. {
  2. "name": "pbkdf2",
  3. "version": "3.1.3",
  4. "description": "This library provides the functionality of PBKDF2 with the ability to use any supported hashing algorithm returned from crypto.getHashes()",
  5. "keywords": [
  6. "pbkdf2",
  7. "kdf",
  8. "salt",
  9. "hash"
  10. ],
  11. "homepage": "https://github.com/crypto-browserify/pbkdf2",
  12. "bugs": {
  13. "url": "https://github.com/crypto-browserify/pbkdf2/issues"
  14. },
  15. "license": "MIT",
  16. "author": "Daniel Cousens",
  17. "browser": {
  18. "./index.js": "./browser.js",
  19. "./lib/sync.js": "./lib/sync-browser.js"
  20. },
  21. "main": "index.js",
  22. "repository": {
  23. "type": "git",
  24. "url": "https://github.com/crypto-browserify/pbkdf2.git"
  25. },
  26. "scripts": {
  27. "prepack": "npmignore --auto --commentLines=autogenerated",
  28. "lint": "eslint --ext=js,mjs .",
  29. "pretest": "npm run lint",
  30. "tests-only": "nyc tape test/index.js",
  31. "test": "npm run tests-only && npm run bundle-test",
  32. "posttest": "npx npm@\">= 10.2\" audit --production",
  33. "bundle-test": "browserify test/index.js > test/bundle.js",
  34. "bench": "node bench/",
  35. "version": "auto-changelog && git add CHANGELOG.md",
  36. "postversion": "auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""
  37. },
  38. "devDependencies": {
  39. "@ljharb/eslint-config": "^21.1.1",
  40. "auto-changelog": "^2.5.0",
  41. "benchmark": "^2.1.4",
  42. "browserify": "^17.0.1",
  43. "encoding": "^0.1.13",
  44. "eslint": "=8.8.0",
  45. "npmignore": "^0.3.1",
  46. "nyc": "^10.3.2",
  47. "object.assign": "^4.1.7",
  48. "semver": "^6.3.1",
  49. "tape": "^5.9.0"
  50. },
  51. "dependencies": {
  52. "create-hash": "~1.1.3",
  53. "create-hmac": "^1.1.7",
  54. "ripemd160": "=2.0.1",
  55. "safe-buffer": "^5.2.1",
  56. "sha.js": "^2.4.11",
  57. "to-buffer": "^1.2.0"
  58. },
  59. "engines": {
  60. "node": ">=0.12"
  61. },
  62. "auto-changelog": {
  63. "output": "CHANGELOG.md",
  64. "template": "keepachangelog",
  65. "unreleased": false,
  66. "commitLimit": false,
  67. "backfillLimit": false,
  68. "hideCredit": true
  69. },
  70. "publishConfig": {
  71. "ignore": [
  72. ".github/workflows",
  73. "bench",
  74. "test"
  75. ]
  76. }
  77. }