package.json 625 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "browserify-cipher",
  3. "version": "1.0.1",
  4. "description": "ciphers for the browser",
  5. "main": "index.js",
  6. "dependencies": {
  7. "browserify-aes": "^1.0.4",
  8. "browserify-des": "^1.0.0",
  9. "evp_bytestokey": "^1.0.0"
  10. },
  11. "browser": "browser.js",
  12. "devDependencies": {
  13. "standard": "^10.0.2",
  14. "tap-spec": "^4.1.0",
  15. "tape": "^4.2.0"
  16. },
  17. "scripts": {
  18. "test": "standard && node test.js | tspec"
  19. },
  20. "author": "Calvin Metcalf <calvin.metcalf@gmail.com>",
  21. "license": "MIT",
  22. "repository": {
  23. "type": "git",
  24. "url": "git@github.com:crypto-browserify/browserify-cipher.git"
  25. }
  26. }