-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 791 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 791 Bytes
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
{
"name": "easy-https",
"description": "Zero config, one step local https server with custom local domain.",
"keywords": [
"https",
"nodejs",
"mkcert",
"server",
"localhost"
],
"version": "1.0.1",
"scripts": {
"test": "ts-node test/index.ts",
"build": "rimraf dist && tsc"
},
"main": "./dist/index.js",
"homepage": "https://github.com/pie6k/easy-https/",
"repository": {
"type": "git",
"url": "https://github.com/pie6k/easy-https.git"
},
"devDependencies": {
"@types/node": "^14.11.8",
"@types/open": "^6.2.1",
"hostile": "^1.3.2",
"https-localhost": "^4.6.2",
"open": "^7.3.0",
"temp-dir": "^2.0.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"rimraf": "^3.0.2"
}
}