package.json 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. {
  2. "_from": "blueimp-md5",
  3. "_id": "blueimp-md5@2.18.0",
  4. "_inBundle": false,
  5. "_integrity": "sha512-vE52okJvzsVWhcgUHOv+69OG3Mdg151xyn41aVQN/5W5S+S43qZhxECtYLAEHMSFWX6Mv5IZrzj3T5+JqXfj5Q==",
  6. "_location": "/blueimp-md5",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "tag",
  10. "registry": true,
  11. "raw": "blueimp-md5",
  12. "name": "blueimp-md5",
  13. "escapedName": "blueimp-md5",
  14. "rawSpec": "",
  15. "saveSpec": null,
  16. "fetchSpec": "latest"
  17. },
  18. "_requiredBy": [
  19. "#USER",
  20. "/"
  21. ],
  22. "_resolved": "https://registry.npmjs.org/blueimp-md5/-/blueimp-md5-2.18.0.tgz",
  23. "_shasum": "1152be1335f0c6b3911ed9e36db54f3e6ac52935",
  24. "_spec": "blueimp-md5",
  25. "_where": "F:\\",
  26. "author": {
  27. "name": "Sebastian Tschan",
  28. "url": "https://blueimp.net"
  29. },
  30. "bugs": {
  31. "url": "https://github.com/blueimp/JavaScript-MD5/issues"
  32. },
  33. "bundleDependencies": false,
  34. "contributors": [
  35. {
  36. "name": "Paul Johnston",
  37. "url": "http://pajhome.org.uk/crypt/md5"
  38. }
  39. ],
  40. "deprecated": false,
  41. "description": "JavaScript MD5 implementation. Compatible with server-side environments like Node.js, module loaders like RequireJS, Browserify or webpack and all web browsers.",
  42. "devDependencies": {
  43. "chai": "4",
  44. "eslint": "7",
  45. "eslint-config-blueimp": "2",
  46. "eslint-config-prettier": "6",
  47. "eslint-plugin-jsdoc": "30",
  48. "eslint-plugin-prettier": "3",
  49. "mocha": "8",
  50. "prettier": "2",
  51. "uglify-js": "3"
  52. },
  53. "eslintConfig": {
  54. "extends": [
  55. "blueimp",
  56. "plugin:jsdoc/recommended",
  57. "plugin:prettier/recommended"
  58. ],
  59. "env": {
  60. "browser": true,
  61. "node": true
  62. }
  63. },
  64. "eslintIgnore": [
  65. "js/*.min.js",
  66. "test/vendor"
  67. ],
  68. "files": [
  69. "js/*.js",
  70. "js/*.js.map"
  71. ],
  72. "homepage": "https://github.com/blueimp/JavaScript-MD5",
  73. "keywords": [
  74. "javascript",
  75. "md5"
  76. ],
  77. "license": "MIT",
  78. "main": "js/md5.js",
  79. "name": "blueimp-md5",
  80. "prettier": {
  81. "arrowParens": "avoid",
  82. "proseWrap": "always",
  83. "semi": false,
  84. "singleQuote": true,
  85. "trailingComma": "none"
  86. },
  87. "repository": {
  88. "type": "git",
  89. "url": "git://github.com/blueimp/JavaScript-MD5.git"
  90. },
  91. "scripts": {
  92. "build": "cd js && uglifyjs md5.js -c -m -o md5.min.js --source-map url=md5.min.js.map",
  93. "lint": "eslint .",
  94. "postversion": "git push --tags origin master master:gh-pages && npm publish",
  95. "preversion": "npm test",
  96. "test": "npm run lint && npm run unit",
  97. "unit": "mocha",
  98. "version": "npm run build && git add -A js"
  99. },
  100. "title": "JavaScript MD5",
  101. "version": "2.18.0"
  102. }