1
0

package.json 1.2 KB

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