package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "_from": "js-md5@^0.8.3",
  3. "_id": "js-md5@0.8.3",
  4. "_inBundle": false,
  5. "_integrity": "sha512-qR0HB5uP6wCuRMrWPTrkMaev7MJZwJuuw4fnwAzRgP4J4/F8RwtodOKpGp4XpqsLBFzzgqIO42efFAyz2Et6KQ==",
  6. "_location": "/js-md5",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "range",
  10. "registry": true,
  11. "raw": "js-md5@^0.8.3",
  12. "name": "js-md5",
  13. "escapedName": "js-md5",
  14. "rawSpec": "^0.8.3",
  15. "saveSpec": null,
  16. "fetchSpec": "^0.8.3"
  17. },
  18. "_requiredBy": [
  19. "/"
  20. ],
  21. "_resolved": "https://registry.npmmirror.com/js-md5/-/js-md5-0.8.3.tgz",
  22. "_shasum": "921bab7efa95bfc9d62b87ee08a57f8fe4305b69",
  23. "_spec": "js-md5@^0.8.3",
  24. "_where": "E:\\git\\2021项目\\安科院大屏",
  25. "author": {
  26. "name": "Chen, Yi-Cyuan",
  27. "email": "emn178@gmail.com"
  28. },
  29. "browser": {
  30. "crypto": false,
  31. "buffer": false
  32. },
  33. "bugs": {
  34. "url": "https://github.com/emn178/js-md5/issues"
  35. },
  36. "bundleDependencies": false,
  37. "deprecated": false,
  38. "description": "A simple MD5 hash function for JavaScript supports UTF-8 encoding.",
  39. "devDependencies": {
  40. "expect.js": "~0.3.1",
  41. "jsdoc": "~4.0.2",
  42. "mocha": "~10.2.0",
  43. "nyc": "^15.1.0",
  44. "requirejs": "^2.1.22",
  45. "tiny-worker": "^2.3.0",
  46. "uglify-js": "^3.1.9"
  47. },
  48. "homepage": "https://github.com/emn178/js-md5",
  49. "keywords": [
  50. "md5",
  51. "hash",
  52. "encryption",
  53. "cryptography",
  54. "HMAC"
  55. ],
  56. "license": "MIT",
  57. "main": "src/md5.js",
  58. "name": "js-md5",
  59. "nyc": {
  60. "exclude": [
  61. "tests"
  62. ]
  63. },
  64. "repository": {
  65. "type": "git",
  66. "url": "git+https://github.com/emn178/js-md5.git"
  67. },
  68. "scripts": {
  69. "build": "npm run-script compress;npm run-script doc",
  70. "compress": "uglifyjs src/md5.js -c -m eval --comments --output build/md5.min.js",
  71. "coveralls": "nyc report --reporter=text-lcov | coveralls",
  72. "doc": "rm -rf doc;jsdoc src README.md -d doc",
  73. "report": "nyc --reporter=html --reporter=text mocha tests/node-test.js",
  74. "test": "nyc mocha tests/node-test.js"
  75. },
  76. "version": "0.8.3"
  77. }