package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "privatebin",
  3. "version": "2.0.3",
  4. "description": "PrivateBin is a minimalist, open source online pastebin where the server has zero knowledge of stored data. Data is encrypted/decrypted in the browser using 256 bit AES in Galois Counter mode (GCM).",
  5. "main": "privatebin.js",
  6. "directories": {
  7. "test": "test"
  8. },
  9. "devDependencies": {
  10. "@peculiar/webcrypto": "^1.5.0",
  11. "eslint": "^9.37.0",
  12. "jsdom": "^26.0.0",
  13. "jsdom-global": "^3.0.2",
  14. "jsverify": "^0.8.3"
  15. },
  16. "scripts": {
  17. "test": "mocha",
  18. "ci-test": "mocha --reporter xunit --reporter-option output=mocha-results.xml"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "git+https://github.com/PrivateBin/PrivateBin.git"
  23. },
  24. "keywords": [
  25. "private",
  26. "secure",
  27. "end-to-end-encrypted",
  28. "e2e",
  29. "paste",
  30. "pastebin",
  31. "zero",
  32. "zero-knowledge",
  33. "encryption",
  34. "encrypted",
  35. "AES"
  36. ],
  37. "author": "",
  38. "license": "zlib-acknowledgement",
  39. "bugs": {
  40. "url": "https://github.com/PrivateBin/PrivateBin/issues"
  41. },
  42. "homepage": "https://privatebin.info/"
  43. }