package.json 742 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "des.js",
  3. "version": "1.1.0",
  4. "description": "DES implementation",
  5. "main": "lib/des.js",
  6. "scripts": {
  7. "test": "NODE_OPTIONS=--openssl-legacy-provider mocha --reporter=spec test/*-test.js"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git+ssh://git@github.com/indutny/des.js.git"
  12. },
  13. "keywords": [
  14. "DES",
  15. "3DES",
  16. "EDE",
  17. "CBC"
  18. ],
  19. "author": "Fedor Indutny <fedor@indutny.com>",
  20. "license": "MIT",
  21. "bugs": {
  22. "url": "https://github.com/indutny/des.js/issues"
  23. },
  24. "homepage": "https://github.com/indutny/des.js#readme",
  25. "devDependencies": {
  26. "jshint": "^2.8.0",
  27. "mocha": "^10.2.0"
  28. },
  29. "dependencies": {
  30. "inherits": "^2.0.1",
  31. "minimalistic-assert": "^1.0.0"
  32. }
  33. }