easy-ocsp
Version:
An easy-to-use OCSP client for Node.js
51 lines (50 loc) • 1.49 kB
JSON
{
"name": "easy-ocsp",
"version": "1.2.2",
"description": "An easy-to-use OCSP client for Node.js",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"test": "node --import tsx --test --test-concurrency 4 test/**/*.test.ts",
"test:cov": "c8 -r lcov -r text --include src/**/*.ts node --import tsx --test --test-concurrency 4 test/**/*.test.ts",
"lint": "biome lint",
"format": "biome format --write",
"build": "tsup",
"build:docs": "typedoc --skipErrorChecking",
"check:types": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timokoessler/easy-ocsp.git"
},
"keywords": ["ocsp", "ocsp client", "X.509", "certificate"],
"engines": {
"node": ">=18"
},
"author": "Timo Kössler",
"license": "MIT",
"bugs": {
"url": "https://github.com/timokoessler/easy-ocsp/issues"
},
"homepage": "https://ocsp.tkoessler.de",
"devDependencies": {
"@biomejs/biome": "1.9",
"@types/node": "^22.1.0",
"c8": "^10.1.3",
"tsup": "^8.0.1",
"tsx": "^4.19.2",
"typedoc": "^0.28.2",
"typescript": "5.8"
},
"dependencies": {
"asn1js": "^3.0.5",
"pkijs": "^3.2.4"
}
}