forked from daquinoaldo/https-localhost
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.33 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.33 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
{
"name": "https-localhost",
"version": "5.0.0",
"description": "HTTPS server running on localhost",
"main": "dist/src/cli.js",
"types": "dist/src/HttpsLocalhost.d.ts",
"scripts": {
"start": "npm run build && node dist/src/cli.js",
"build": "tsc",
"dev": "npx ts-node src/cli.ts",
"watch": "nodemon -w src -x 'npx ts-node' src/cli.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"sserve": "dist/src/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daquinoaldo/https-localhost.git"
},
"keywords": [
"localhost",
"https",
"http2",
"https-server",
"ssl",
"tsl",
"certification-authority",
"certificate",
"local-development",
"pwa",
"spa"
],
"author": "Aldo D'Aquino",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/daquinoaldo/https-localhost/issues"
},
"homepage": "https://github.com/daquinoaldo/https-localhost#readme",
"devDependencies": {
"@types/finalhandler": "^1.1.0",
"@types/serve-static": "^1.13.5",
"@types/update-notifier": "^5.0.0",
"nodemon": "^2.0.5",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
},
"dependencies": {
"devcert": "^1.1.3",
"finalhandler": "^1.1.2",
"serve-static": "^1.14.1",
"update-notifier": "^5.0.0"
}
}