package.json 794 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "des.js",
  3. "version": "1.0.1",
  4. "description": "DES implementation",
  5. "main": "lib/des.js",
  6. "scripts": {
  7. "test": "mocha --reporter=spec test/*-test.js && jscs lib/*.js lib/**/*.js test/*.js && jshint lib/*.js lib/**/*.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. "jscs": "^3.0.7",
  27. "jshint": "^2.8.0",
  28. "mocha": "^6.2.2"
  29. },
  30. "dependencies": {
  31. "inherits": "^2.0.1",
  32. "minimalistic-assert": "^1.0.0"
  33. }
  34. }