UNPKG

ssl-checker

Version:

Zero-dependency SSL/TLS certificate checker for Node.js — HTTPS, SMTP, IMAP, POP3, FTP via STARTTLS

66 lines (65 loc) 1.69 kB
{ "name": "ssl-checker", "version": "3.0.1", "description": "Zero-dependency SSL/TLS certificate checker for Node.js — HTTPS, SMTP, IMAP, POP3, FTP via STARTTLS", "bin": { "ssl-checker": "./lib/cjs/cli.js" }, "main": "./lib/cjs/index.js", "module": "./lib/es/index.mjs", "types": "./lib/index.d.ts", "exports": { ".": { "import": "./lib/es/index.mjs", "require": "./lib/cjs/index.js", "types": "./lib/index.d.ts" } }, "engines": { "node": ">=20" }, "scripts": { "test": "vitest run", "test:watch": "vitest", "test:coverage": "vitest run --coverage", "build": "rm -rf lib && tsc --project tsconfig.types.json && rollup -c --configPlugin typescript", "format": "prettier --write '**/*.{ts,md}'", "prepare": "npm run build", "prepublishOnly": "npm test", "version": "npm run format && git add -A src", "postversion": "git push && git push --tags" }, "repository": { "type": "git", "url": "git+https://github.com/dyaa/ssl-checker.git" }, "keywords": [ "ssl", "tls", "certificate", "checker", "https", "expiry", "security", "cli" ], "author": "Dyaa Eldin <mail@dyaa.me> (https://dyaa.me)", "license": "MIT", "bugs": { "url": "https://github.com/dyaa/ssl-checker/issues" }, "homepage": "https://github.com/dyaa/ssl-checker#readme", "devDependencies": { "@rollup/plugin-typescript": "^12.3.0", "@types/node": "^25.6.0", "@vitest/coverage-istanbul": "^4.1.5", "prettier": "^3.8.3", "rollup": "^4.60.2", "tslib": "^2.8.1", "typescript": "^6.0.3", "vitest": "^4.1.2" }, "files": [ "lib/**/*" ] }