-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
65 lines (65 loc) · 1.18 KB
/
package.json
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": "madcert",
"version": "2.5.0",
"description": "Make a Development Cert",
"engines": {
"node": ">=10.16.0"
},
"main": "src/certs.js",
"scripts": {
"test": "mocha --timeout 15000 --recursive"
},
"author": "National Security Agency (https://code.nsa.gov/)",
"license": "MIT",
"bin": {
"madcert": "src/madcert.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NationalSecurityAgency/MADCert.git"
},
"keywords": [
"ca",
"cert",
"certificates",
"client certificates",
"crt",
"crypto",
"cryptography",
"development",
"encryption",
"https",
"keypair",
"keys",
"localhost",
"madcert",
"node-forge",
"openssl",
"pem",
"pki",
"p12",
"self",
"server",
"signed",
"ssl",
"testing",
"tls",
"trust",
"user",
"x509"
],
"bugs": {
"url": "https://github.com/NationalSecurityAgency/MADCert/issues"
},
"dependencies": {
"date-fns": "^2.19.0",
"fs-extra": "10.0.0",
"lodash": "^4.17.21",
"node-forge": "^1.3.0",
"yargs": "17.3.1"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "9.2.0"
}
}