package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "name": "privatebin",
  3. "version": "2.0.5",
  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. "fast-check": "^4.7.0",
  13. "jsdom": "^26.1.0",
  14. "jsdom-global": "^3.0.2",
  15. "jsverify": "^0.8.3",
  16. "mime-types": "^3.0.2",
  17. "mocha": "^11.7.5",
  18. "nyc": "^18.0.0"
  19. },
  20. "scripts": {
  21. "lint": "eslint",
  22. "test": "mocha",
  23. "ci-test": "mocha --reporter xunit --reporter-option output=mocha-results.xml"
  24. },
  25. "repository": {
  26. "type": "git",
  27. "url": "git+https://github.com/PrivateBin/PrivateBin.git"
  28. },
  29. "keywords": [
  30. "private",
  31. "secure",
  32. "end-to-end-encrypted",
  33. "e2e",
  34. "paste",
  35. "pastebin",
  36. "zero",
  37. "zero-knowledge",
  38. "encryption",
  39. "encrypted",
  40. "AES"
  41. ],
  42. "author": "",
  43. "license": "zlib-acknowledgement",
  44. "bugs": {
  45. "url": "https://github.com/PrivateBin/PrivateBin/issues"
  46. },
  47. "homepage": "https://privatebin.info/"
  48. }