1
0

package.json 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "privatebin",
  3. "version": "1.2.1",
  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. "node-webcrypto-ossl": "^1.0.37"
  16. },
  17. "scripts": {
  18. "test": "mocha"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "git+https://github.com/PrivateBin/PrivateBin.git"
  23. },
  24. "keywords": [
  25. "private",
  26. "secure",
  27. "end-to-end-encrypted",
  28. "e2e",
  29. "paste",
  30. "pastebin",
  31. "zero",
  32. "zero-knowledge",
  33. "encryption",
  34. "encrypted",
  35. "AES"
  36. ],
  37. "author": "",
  38. "license": "zlib-acknowledgement",
  39. "bugs": {
  40. "url": "https://github.com/PrivateBin/PrivateBin/issues"
  41. },
  42. "homepage": "https://privatebin.info/"
  43. }