package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "bcryptjs",
  3. "description": "Optimized bcrypt in plain JavaScript with zero dependencies. Compatible to 'bcrypt'.",
  4. "version": "2.4.3",
  5. "author": "Daniel Wirtz <dcode@dcode.io>",
  6. "contributors": [
  7. "Shane Girish <shaneGirish@gmail.com> (https://github.com/shaneGirish)",
  8. "Alex Murray <> (https://github.com/alexmurray)",
  9. "Nicolas Pelletier <> (https://github.com/NicolasPelletier)",
  10. "Josh Rogers <> (https://github.com/geekymole)",
  11. "Noah Isaacson <noah@nisaacson.com> (https://github.com/nisaacson)"
  12. ],
  13. "repository": {
  14. "type": "url",
  15. "url": "https://github.com/dcodeIO/bcrypt.js.git"
  16. },
  17. "bugs": {
  18. "url": "https://github.com/dcodeIO/bcrypt.js/issues"
  19. },
  20. "keywords": [
  21. "bcrypt",
  22. "password",
  23. "auth",
  24. "authentication",
  25. "encryption",
  26. "crypt",
  27. "crypto"
  28. ],
  29. "main": "index.js",
  30. "browser": "dist/bcrypt.js",
  31. "dependencies": {},
  32. "devDependencies": {
  33. "testjs": "~1",
  34. "closurecompiler": "~1",
  35. "metascript": "~0.18",
  36. "bcrypt": "latest",
  37. "utfx": "~1"
  38. },
  39. "license": "MIT",
  40. "scripts": {
  41. "test": "node node_modules/testjs/bin/testjs",
  42. "build": "node scripts/build.js",
  43. "compile": "node node_modules/closurecompiler/bin/ccjs dist/bcrypt.js --compilation_level=SIMPLE_OPTIMIZATIONS --create_source_map=dist/bcrypt.min.map > dist/bcrypt.min.js",
  44. "compress": "gzip -c -9 dist/bcrypt.min.js > dist/bcrypt.min.js.gz",
  45. "make": "npm run build && npm run compile && npm run compress && npm test"
  46. }
  47. }