You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.2 KiB

2 months ago
  1. {
  2. "name": "js-md5",
  3. "version": "0.8.3",
  4. "description": "A simple MD5 hash function for JavaScript supports UTF-8 encoding.",
  5. "main": "src/md5.js",
  6. "devDependencies": {
  7. "expect.js": "~0.3.1",
  8. "jsdoc": "~4.0.2",
  9. "mocha": "~10.2.0",
  10. "nyc": "^15.1.0",
  11. "requirejs": "^2.1.22",
  12. "tiny-worker": "^2.3.0",
  13. "uglify-js": "^3.1.9"
  14. },
  15. "scripts": {
  16. "test": "nyc mocha tests/node-test.js",
  17. "report": "nyc --reporter=html --reporter=text mocha tests/node-test.js",
  18. "coveralls": "nyc report --reporter=text-lcov | coveralls",
  19. "doc": "rm -rf doc;jsdoc src README.md -d doc",
  20. "compress": "uglifyjs src/md5.js -c -m eval --comments --output build/md5.min.js",
  21. "build": "npm run-script compress;npm run-script doc"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "https://github.com/emn178/js-md5.git"
  26. },
  27. "keywords": [
  28. "md5",
  29. "hash",
  30. "encryption",
  31. "cryptography",
  32. "HMAC"
  33. ],
  34. "license": "MIT",
  35. "author": "Chen, Yi-Cyuan <emn178@gmail.com>",
  36. "homepage": "https://github.com/emn178/js-md5",
  37. "bugs": {
  38. "url": "https://github.com/emn178/js-md5/issues"
  39. },
  40. "nyc": {
  41. "exclude": [
  42. "tests"
  43. ]
  44. },
  45. "browser": {
  46. "crypto": false,
  47. "buffer": false
  48. }
  49. }