-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 830 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 830 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
{
"name": "certgen",
"version": "0.2.1",
"author": {
"name": "Bich C. Le",
"email": "bcle00@gmail.com"
},
"description": "Certificate generation library that uses the openssl command line utility",
"repository": {
"type": "git",
"url": "git://github.com/bcle/certgen.git"
},
"homepage": "https://github.com/bcle/certgen",
"keywords": [
"ssl",
"certificate",
"pki",
"openssl"
],
"engines": {
"node": ">=0.8.6"
},
"main": "certgen.js",
"dependencies": {
"tmp": ">=0.0.14"
},
"scripts": {
},
"devDependencies": {},
"optionalDependencies": {},
"readme": "# certgen\nA wrapper around openssl utility to dynamically create signed certificates. For more information, please see the [README from the github page](https://github.com/bcle/certgen#readme)\n"
}