package.json 1.9 KB

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