UNPKG

easy-ocsp

Version:

An easy-to-use OCSP client for Node.js

59 lines (58 loc) 1.67 kB
{ "name": "easy-ocsp", "version": "1.3.1", "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": "oxlint --deny-warnings --type-aware", "format": "prettier --write .", "build": "tsup", "build:docs": "typedoc --skipErrorChecking", "check:types": "tsc --noEmit", "check:format": "prettier --check ." }, "repository": { "type": "git", "url": "git+https://github.com/timokoessler/easy-ocsp.git" }, "keywords": [ "ocsp", "ocsp client", "X.509", "certificate" ], "engines": { "node": ">=18.13.0" }, "author": "Timo Kössler", "license": "MIT", "bugs": { "url": "https://github.com/timokoessler/easy-ocsp/issues" }, "homepage": "https://ocsp.tkoessler.de", "devDependencies": { "@types/node": "^24.1.0", "c8": "^10.1.3", "oxlint": "^1.9.0", "oxlint-tsgolint": "^0.8.3", "prettier": "^3.6.2", "tsup": "^8.0.1", "tsx": "^4.19.2", "typedoc": "^0.28.2", "typescript": "^5.8" }, "dependencies": { "asn1js": "^3.0.5", "pkijs": "^3.2.4" } }