package.json 1.9 KB

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