package.json 925 B

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