-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.07 KB
/
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
46
47
48
49
{
"name": "you-get-https",
"version": "1.1.0",
"description": "A trusted-cert HTTPS frontliner for your local development servers",
"scripts": {
"start": "node index.js"
},
"engines": {
"node": ">= 14"
},
"bin": {
"you-get-https": "index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deliciousinsights/you-get-https.git"
},
"keywords": [
"https",
"tls",
"ssl",
"development",
"local",
"terminator"
],
"author": "Christophe Porteneuve <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/deliciousinsights/you-get-https/issues"
},
"homepage": "https://github.com/deliciousinsights/you-get-https#readme",
"dependencies": {
"aes256": "^1.0.4",
"chalk": "^4.1.0",
"devcert": "^1.1.3",
"http-proxy": "^1.18.1",
"json5": "^2.1.3",
"pkg-up": "^3.1.0",
"xdg-basedir": "^4.0.0",
"yargs": "^16.1.1"
},
"devDependencies": {
"prettier": "^2.1.2"
},
"prettier": {
"semi": false,
"singleQuote": true
}
}