package.json 988 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "selfsigned",
  3. "version": "5.5.0",
  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 10000"
  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. "x509",
  20. "webcrypto"
  21. ],
  22. "author": "José F. Romaniello <jfromaniello@gmail.com> (http://joseoncode.com)",
  23. "contributors": [
  24. {
  25. "name": "Paolo Fragomeni",
  26. "email": "paolo@async.ly",
  27. "url": "http://async.ly"
  28. },
  29. {
  30. "name": "Charles Bushong",
  31. "email": "bushong1@gmail.com",
  32. "url": "http://github.com/bushong1"
  33. }
  34. ],
  35. "license": "MIT",
  36. "dependencies": {
  37. "@peculiar/x509": "^1.14.2",
  38. "pkijs": "^3.3.3"
  39. },
  40. "devDependencies": {
  41. "chai": "^4.3.4",
  42. "mocha": "^11.7.5"
  43. },
  44. "engines": {
  45. "node": ">=18"
  46. }
  47. }