package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "privatebin",
  3. "version": "1.7.5",
  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. "dependencies": {},
  10. "devDependencies": {
  11. "jsdom": "^9.12.0",
  12. "jsdom-global": "^2.1.1",
  13. "jsdom-url": "^2.2.1",
  14. "jsverify": "^0.8.3",
  15. "@peculiar/webcrypto": "^1.1.1"
  16. },
  17. "scripts": {
  18. "test": "mocha",
  19. "ci-test": "mocha --reporter xunit --reporter-option output=mocha-results.xml"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "git+https://github.com/PrivateBin/PrivateBin.git"
  24. },
  25. "keywords": [
  26. "private",
  27. "secure",
  28. "end-to-end-encrypted",
  29. "e2e",
  30. "paste",
  31. "pastebin",
  32. "zero",
  33. "zero-knowledge",
  34. "encryption",
  35. "encrypted",
  36. "AES"
  37. ],
  38. "author": "",
  39. "license": "zlib-acknowledgement",
  40. "bugs": {
  41. "url": "https://github.com/PrivateBin/PrivateBin/issues"
  42. },
  43. "homepage": "https://privatebin.info/"
  44. }