-
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.65 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"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/**/*"
]
}