package.json 579 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "scrypt-js",
  3. "version": "3.0.1",
  4. "description": "The scrypt password-based key derivation function with sync and cancellable async.",
  5. "main": "scrypt.js",
  6. "scripts": {
  7. "test": "mocha test/test-scrypt.js"
  8. },
  9. "types": "scrypt.d.ts",
  10. "devDependencies": {
  11. "mocha": "6.2.2"
  12. },
  13. "keywords": [
  14. "scrypt",
  15. "pbkdf",
  16. "password",
  17. "async",
  18. "asynchronous",
  19. "stepwise"
  20. ],
  21. "author": "Richard Moore <me@ricmoo.com>",
  22. "repository": {
  23. "type": "git",
  24. "url": "git://github.com/ricmoo/scrypt-js.git"
  25. },
  26. "license": "MIT"
  27. }