forked from watson/https-pem
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 1.65 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@metcoder95/https-pem",
"version": "1.0.1",
"description": "Self-signed PEM key and certificate ready for use in your HTTPS server (fork from https-pem)",
"main": "index.js",
"types": "index.d.ts",
"private": false,
"scripts": {
"postinstall": "node install.js",
"clean": "rm -rf *.pem",
"lint": "standard",
"lint:ci": "standard | snazzy",
"test": "node tests/index.js",
"test:ts": "tsd",
"release": "standard-version --no-verify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/metcoder95/https-pem.git"
},
"engines": {
"node": ">=20"
},
"keywords": [
"tls",
"https",
"pem",
"key",
"keys",
"cert",
"certificate",
"selfsigned",
"self-signed",
"development",
"options",
"server"
],
"author": "Thomas Watson Steen <w@tson.dk> (https://twitter.com/wa7son)",
"contributors": [
{
"name": "Carlos Fuentes",
"email": "me@metcoder.dev",
"url": "https://bsky.app/profile/metcoder.dev"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/metcoder95/https-pem/issues"
},
"homepage": "https://github.com/metcoder95/https-pem#readme",
"dependencies": {
"selfsigned": "^3.0.1"
},
"devDependencies": {
"@types/node": "^24.2.0",
"node-forge": "^1.3.1",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"standard-version": "^9.5.0",
"tsd": "^0.33.0",
"typescript": "^5.9.2",
"undici": "^7.13.0"
},
"tsd": {
"directory": "test"
},
"standard": {
"ignore": [
"*.d.ts",
"*.test-d.ts"
]
},
"coordinates": [
55.7774667,
12.5906882
]
}