package.json 986 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "browserify-aes",
  3. "version": "1.2.0",
  4. "description": "aes, for browserify",
  5. "browser": "browser.js",
  6. "main": "index.js",
  7. "directories": {
  8. "test": "test"
  9. },
  10. "scripts": {
  11. "standard": "standard",
  12. "unit": "node test/index.js | tspec",
  13. "test": "npm run standard && npm run unit"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git://github.com/crypto-browserify/browserify-aes.git"
  18. },
  19. "keywords": [
  20. "aes",
  21. "crypto",
  22. "browserify"
  23. ],
  24. "author": "",
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/crypto-browserify/browserify-aes/issues"
  28. },
  29. "homepage": "https://github.com/crypto-browserify/browserify-aes",
  30. "dependencies": {
  31. "buffer-xor": "^1.0.3",
  32. "cipher-base": "^1.0.0",
  33. "create-hash": "^1.1.0",
  34. "evp_bytestokey": "^1.0.3",
  35. "inherits": "^2.0.1",
  36. "safe-buffer": "^5.0.1"
  37. },
  38. "devDependencies": {
  39. "standard": "^9.0.0",
  40. "tap-spec": "^4.1.1",
  41. "tape": "^4.6.3"
  42. }
  43. }