package.json 763 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "cipher-base",
  3. "version": "1.0.4",
  4. "description": "abstract base class for crypto-streams",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "node test.js | tspec"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git+https://github.com/crypto-browserify/cipher-base.git"
  12. },
  13. "keywords": [
  14. "cipher",
  15. "stream"
  16. ],
  17. "author": "Calvin Metcalf <calvin.metcalf@gmail.com>",
  18. "license": "MIT",
  19. "bugs": {
  20. "url": "https://github.com/crypto-browserify/cipher-base/issues"
  21. },
  22. "homepage": "https://github.com/crypto-browserify/cipher-base#readme",
  23. "dependencies": {
  24. "inherits": "^2.0.1",
  25. "safe-buffer": "^5.0.1"
  26. },
  27. "devDependencies": {
  28. "standard": "^10.0.2",
  29. "tap-spec": "^4.1.0",
  30. "tape": "^4.2.0"
  31. }
  32. }