-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.25 KB
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
{
"name": "@geisonjr/certfy",
"version": "1.0.1",
"author": "GeisonJr",
"license": "MIT",
"description": "Certfy is a simple and easy-to-use library to generate SSL certificates using Let's Encrypt.",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/geisonjr/certfy.git"
},
"bugs": {
"url": "https://github.com/geisonjr/certfy/issues"
},
"scripts": {
"build": "npm run script:clean && npm run tsc:build",
"example": "ts-node ./example/index.ts",
"prepack": "npm run build",
"script:clean": "node ./scripts/clean.js",
"tsc:build": "tsc -p ./tsconfig.json"
},
"dependencies": {
"@geisonjr/envfy": "^1.0.0",
"@geisonjr/typefy": "^1.0.0",
"node-forge": "^1.3.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^18.19.18",
"@types/node-forge": "^1.3.11",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.js"
}
},
"files": [
"lib"
],
"keywords": [
"cert",
"certfy",
"certificate",
"certificates",
"letsencrypt",
"ssl",
"tls"
]
}