package.json 1.9 KB

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