forked from davewasmer/devcert
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
37 lines (37 loc) · 803 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
{
"name": "devcert-sanscache",
"version": "0.5.1",
"description": "Generate trusted local SSL/TLS certificates for local SSL development",
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
}
},
"scripts": {
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/guybedford/devcert.git"
},
"engines": {
"node": "^14.13.1 || >=16.0.0"
},
"author": "Dave Wasmer",
"license": "MIT",
"devDependencies": {
"@types/node": "20.11.0",
"typescript": "^5.5.4"
},
"dependencies": {
"command-exists": "^1.2.9",
"get-port": "^6.1.2",
"glob": "^10.4.5",
"rimraf": "^5.0.9"
}
}