package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "js-md5",
  3. "version": "0.7.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": "^3.4.0",
  9. "mocha": "~2.3.4",
  10. "nyc": "^11.3.0",
  11. "requirejs": "^2.1.22",
  12. "uglify-js": "^3.1.9",
  13. "webworker-threads": "^0.7.11"
  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. }