-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
45 lines (45 loc) · 960 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
41
42
43
44
45
{
"name": "selfsigned",
"version": "2.4.1",
"description": "Generate self signed certificates private and public keys",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha -t 5000"
},
"repository": {
"type": "git",
"url": "git://github.com/jfromaniello/selfsigned.git"
},
"keywords": [
"openssl",
"self",
"signed",
"certificates"
],
"author": "José F. Romaniello <jfromaniello@gmail.com> (http://joseoncode.com)",
"contributors": [
{
"name": "Paolo Fragomeni",
"email": "paolo@async.ly",
"url": "http://async.ly"
},
{
"name": "Charles Bushong",
"email": "bushong1@gmail.com",
"url": "http://github.com/bushong1"
}
],
"license": "MIT",
"dependencies": {
"@types/node-forge": "^1.3.0",
"node-forge": "^1"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^9.1.1"
},
"engines": {
"node": ">=10"
}
}