1
0
Fork 0
forked from svrjs/svrjs
This repository has been archived on 2024-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
svrjs/node_modules/ocsp/package.json

35 lines
790 B
JSON
Raw Normal View History

2023-07-29 20:33:28 +02:00
{
"name": "ocsp",
"version": "1.2.0",
2023-07-29 20:33:28 +02:00
"description": "OCSP Stapling implementation",
"main": "lib/ocsp.js",
"scripts": {
"lint": "jshint lib/*.js lib/**/*.js && jscs lib/*.js lib/**/*.js test/*.js test/**/*.js",
"test": "mocha test/*-test.js"
2023-07-29 20:33:28 +02:00
},
"keywords": [
"OCSP",
"ASN.1",
"Stapling"
],
"author": "Fedor Indutny <fedor@indutny.com>",
2023-07-29 20:33:28 +02:00
"repository": {
"type": "git",
"url": "git+https://github.com/indutny/ocsp.git"
},
"license": "MIT",
"devDependencies": {
"jscs": "^2.4.0",
"jshint": "^2.8.0",
"mocha": "^2.2.5",
"selfsigned.js": "^3.0.1"
2023-07-29 20:33:28 +02:00
},
"dependencies": {
"asn1.js": "^4.8.0",
"asn1.js-rfc2560": "^4.0.0",
"asn1.js-rfc5280": "^2.0.0",
"async": "^1.5.2",
"simple-lru-cache": "0.0.2"
}
2023-07-29 20:33:28 +02:00
}