forked from indutny/ocsp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 790 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 790 Bytes
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
{
"name": "ocsp",
"version": "1.2.0",
"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"
},
"keywords": [
"OCSP",
"ASN.1",
"Stapling"
],
"author": "Fedor Indutny <[email protected]>",
"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"
},
"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"
}
}