package.json 873 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "md5.js",
  3. "version": "1.3.5",
  4. "description": "node style md5 on pure JavaScript",
  5. "keywords": [
  6. "crypto",
  7. "md5"
  8. ],
  9. "homepage": "https://github.com/crypto-browserify/md5.js",
  10. "bugs": {
  11. "url": "https://github.com/crypto-browserify/md5.js/issues"
  12. },
  13. "license": "MIT",
  14. "author": "Kirill Fomichev <fanatid@ya.ru> (https://github.com/fanatid)",
  15. "files": [
  16. "index.js"
  17. ],
  18. "main": "index.js",
  19. "repository": {
  20. "type": "git",
  21. "url": "https://github.com/crypto-browserify/md5.js.git"
  22. },
  23. "scripts": {
  24. "lint": "standard",
  25. "test": "npm run lint && npm run unit",
  26. "unit": "node test/*.js"
  27. },
  28. "dependencies": {
  29. "hash-base": "^3.0.0",
  30. "inherits": "^2.0.1",
  31. "safe-buffer": "^5.1.2"
  32. },
  33. "devDependencies": {
  34. "hash-test-vectors": "^1.3.2",
  35. "standard": "^7.0.0",
  36. "tape": "^4.2.0"
  37. }
  38. }