cert-info.js/package.json

47 lines
1.0 KiB
JSON

{
"name": "certpem",
"version": "1.0.0",
"description": "Read basic info (subject, altnames, expiresAt, issuedAt) from a cert.pem / x509 certificate (tls / ssl / https) ",
"main": "index.js",
"bin": {
"certpem": "bin/certpem.js"
},
"scripts": {
"test": "node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Daplie/cert-info.js.git"
},
"keywords": [
"cert.pem",
"cert",
"certificate",
"x509",
"subject",
"altnames",
"notBefore",
"notAfter",
"issuedAt",
"expiresAt",
"expired",
"expires",
"issued",
"at",
"asn1",
"pki"
],
"author": "AJ ONeal <coolaj86@gmail.com> (https://coolaj86.com/)",
"license": "(MIT OR Apache-2.0)",
"bugs": {
"url": "https://github.com/Daplie/cert-info.js/issues"
},
"homepage": "https://github.com/Daplie/cert-info.js#readme",
"dependencies": {
"asn1js": "^1.2.12",
"buffer-v6-polyfill": "^1.0.3",
"node.extend": "^1.1.5",
"pkijs": "^1.3.27"
}
}