package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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. "mocha": "^11.7.5",
  16. "nyc": "^17.1.0"
  17. },
  18. "scripts": {
  19. "test": "mocha",
  20. "ci-test": "mocha --reporter xunit --reporter-option output=mocha-results.xml"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "git+https://github.com/PrivateBin/PrivateBin.git"
  25. },
  26. "keywords": [
  27. "private",
  28. "secure",
  29. "end-to-end-encrypted",
  30. "e2e",
  31. "paste",
  32. "pastebin",
  33. "zero",
  34. "zero-knowledge",
  35. "encryption",
  36. "encrypted",
  37. "AES"
  38. ],
  39. "author": "",
  40. "license": "zlib-acknowledgement",
  41. "bugs": {
  42. "url": "https://github.com/PrivateBin/PrivateBin/issues"
  43. },
  44. "homepage": "https://privatebin.info/"
  45. }