package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "privatebin",
  3. "version": "1.7.9",
  4. "description": "PrivateBin is a minimalist, open source online pastebin where the server has zero knowledge of pasted 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. "jsdom": "^26.0.0",
  12. "jsdom-global": "^3.0.2",
  13. "jsverify": "^0.8.3"
  14. },
  15. "scripts": {
  16. "test": "mocha",
  17. "ci-test": "mocha --reporter xunit --reporter-option output=mocha-results.xml"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/PrivateBin/PrivateBin.git"
  22. },
  23. "keywords": [
  24. "private",
  25. "secure",
  26. "end-to-end-encrypted",
  27. "e2e",
  28. "paste",
  29. "pastebin",
  30. "zero",
  31. "zero-knowledge",
  32. "encryption",
  33. "encrypted",
  34. "AES"
  35. ],
  36. "author": "",
  37. "license": "zlib-acknowledgement",
  38. "bugs": {
  39. "url": "https://github.com/PrivateBin/PrivateBin/issues"
  40. },
  41. "homepage": "https://privatebin.info/"
  42. }