package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "blueimp-md5",
  3. "version": "2.10.0",
  4. "title": "JavaScript MD5",
  5. "description": "JavaScript MD5 implementation. Compatible with server-side environments like Node.js, module loaders like RequireJS, Browserify or webpack and all web browsers.",
  6. "keywords": [
  7. "javascript",
  8. "md5"
  9. ],
  10. "homepage": "https://github.com/blueimp/JavaScript-MD5",
  11. "author": {
  12. "name": "Sebastian Tschan",
  13. "url": "https://blueimp.net"
  14. },
  15. "contributors": [
  16. {
  17. "name": "Paul Johnston",
  18. "url": "http://pajhome.org.uk/crypt/md5"
  19. }
  20. ],
  21. "repository": {
  22. "type": "git",
  23. "url": "git://github.com/blueimp/JavaScript-MD5.git"
  24. },
  25. "license": "MIT",
  26. "devDependencies": {
  27. "chai": "^4.1.1",
  28. "eslint": "^4.5.0",
  29. "eslint-config-standard": "^10.2.1",
  30. "eslint-plugin-import": "^2.7.0",
  31. "eslint-plugin-node": "^5.1.1",
  32. "eslint-plugin-promise": "^3.5.0",
  33. "eslint-plugin-standard": "^3.0.1",
  34. "mocha": "^3.5.0",
  35. "prettier-eslint-cli": "^4.2.1",
  36. "uglify-js": "^3.0.28"
  37. },
  38. "scripts": {
  39. "format": "prettier-eslint --no-semi --single-quote --write **/*.js",
  40. "lint": "eslint .",
  41. "unit": "mocha",
  42. "test": "npm run lint && npm run unit",
  43. "build": "cd js && uglifyjs md5.js -c -m -o md5.min.js --source-map url=md5.min.js.map",
  44. "preversion": "npm test",
  45. "version": "npm run build && git add -A js",
  46. "postversion": "git push --tags origin master master:gh-pages && npm publish"
  47. },
  48. "main": "js/md5.js"
  49. }