-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 865 Bytes
/
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
{
"name": "selfsigned-ca",
"version": "2.0.1",
"description": "🔑 Generate self-signed certificates, keys and Root CA for use in HTTPS servers.",
"keywords": [
"root",
"ca",
"certificate",
"selfsigned",
"self-signed",
"key",
"cert",
"pem",
"development",
"https",
"server",
"ssl",
"tls"
],
"author": "Mike Kovařík",
"license": "MIT",
"homepage": "http://mutiny.cz/selfsigned-ca",
"bugs": "https://github.com/MikeKovarik/selfsigned-ca/issues/",
"repository": {
"type": "git",
"url": "https://github.com/MikeKovarik/selfsigned-ca.git"
},
"scripts": {
"build": "rollup -c",
"warch": "rollup -c -w"
},
"devDependencies": {
"rollup": "^0.64.1",
"rollup-plugin-notify": "^1.0.3"
},
"dependencies": {
"cert-store": "^1.0.0",
"node-forge": "^0.7.6"
}
}