package.json 729 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "aes-js",
  3. "version": "3.0.0",
  4. "bugs": {
  5. "url": "http://github.com/ricmoo/aes-js/issues",
  6. "email": "github@ricmoo.com"
  7. },
  8. "description": "A pure JavaScript implementation of the AES block cipher and all common modes of operation.",
  9. "devDependencies": {
  10. "nodeunit": "0.9.1"
  11. },
  12. "main": "index.js",
  13. "scripts": {
  14. "test": "./node_modules/.bin/nodeunit test/index.js"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git://github.com/ricmoo/aes-js.git"
  19. },
  20. "keywords": [
  21. "aes",
  22. "aes-ctr",
  23. "aes-ofb",
  24. "aes-ecb",
  25. "aes-cbc",
  26. "aes-cfb",
  27. "encrypt",
  28. "decrypt",
  29. "block",
  30. "cipher"
  31. ],
  32. "author": "Richard Moore <me@ricmoo.com>",
  33. "license": "MIT"
  34. }