package.json 900 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "selfsigned",
  3. "version": "2.0.1",
  4. "description": "Generate self signed certificates private and public keys",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha -t 5000"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git://github.com/jfromaniello/selfsigned.git"
  12. },
  13. "keywords": [
  14. "openssl",
  15. "self",
  16. "signed",
  17. "certificates"
  18. ],
  19. "author": "José F. Romaniello <jfromaniello@gmail.com> (http://joseoncode.com)",
  20. "contributors": [
  21. {
  22. "name": "Paolo Fragomeni",
  23. "email": "paolo@async.ly",
  24. "url": "http://async.ly"
  25. },
  26. {
  27. "name": "Charles Bushong",
  28. "email": "bushong1@gmail.com",
  29. "url": "http://github.com/bushong1"
  30. }
  31. ],
  32. "license": "MIT",
  33. "dependencies": {
  34. "node-forge": "^1"
  35. },
  36. "devDependencies": {
  37. "chai": "^4.3.4",
  38. "mocha": "^9.1.1"
  39. },
  40. "engines": {
  41. "node": ">=10"
  42. }
  43. }