package.json 1.2 KB

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